[webkit-changes] cvs commit: WebCore/khtml/editing SelectionController.cpp

Eric eseidel at opensource.apple.com
Fri Sep 23 23:29:08 PDT 2005


eseidel     05/09/23 23:29:07

  Modified:    .        ChangeLog
               khtml/editing SelectionController.cpp
  Log:
  Bug #: 5113
  Submitted by: eseidel
  Reviewed by: none, build fix only.
          * khtml/editing/SelectionController.cpp:
          (khtml::SelectionController::debugPosition):
          http://bugzilla.opendarwin.org/show_bug.cgi?id=5113
  
  Revision  Changes    Path
  1.154     +8 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.153
  retrieving revision 1.154
  diff -u -r1.153 -r1.154
  --- ChangeLog	24 Sep 2005 05:49:13 -0000	1.153
  +++ ChangeLog	24 Sep 2005 06:29:06 -0000	1.154
  @@ -1,4 +1,12 @@
   2005-09-23  Eric Seidel  <eseidel at apple.com>
  +
  +        No review, build fix only.
  +
  +        * khtml/editing/SelectionController.cpp:
  +        (khtml::SelectionController::debugPosition):
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=5113
  +
  +2005-09-23  Eric Seidel  <eseidel at apple.com>
           Fix from Mitz Pettel <opendarwin.org at mitzpettel.com>
   
           Reviewed by mjs.
  
  
  
  1.95      +3 -3      WebCore/khtml/editing/SelectionController.cpp
  
  Index: SelectionController.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/editing/SelectionController.cpp,v
  retrieving revision 1.94
  retrieving revision 1.95
  diff -u -r1.94 -r1.95
  --- SelectionController.cpp	24 Sep 2005 01:18:54 -0000	1.94
  +++ SelectionController.cpp	24 Sep 2005 06:29:07 -0000	1.95
  @@ -1019,14 +1019,14 @@
   
       if (m_start == m_end) {
           Position pos = m_start;
  -        fprintf(stderr, "pos:        %s %p:%ld\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
  +        fprintf(stderr, "pos:        %s %p:%d\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
       }
       else {
           Position pos = m_start;
  -        fprintf(stderr, "start:      %s %p:%ld\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
  +        fprintf(stderr, "start:      %s %p:%d\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
           fprintf(stderr, "-----------------------------------\n");
           pos = m_end;
  -        fprintf(stderr, "end:        %s %p:%ld\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
  +        fprintf(stderr, "end:        %s %p:%d\n", pos.node()->nodeName().qstring().latin1(), pos.node(), pos.offset());
           fprintf(stderr, "-----------------------------------\n");
       }
             
  
  
  



More information about the webkit-changes mailing list