Changeset 19077 for S60/trunk/WebCore

Show
Ignore:
Timestamp:
01/24/07 09:12:24 (2 years ago)
Author:
brmorris
Message:

bujtas <zbujtas@gmail.com>

Reviewed by Darin.
DESC: 'index' variable is not declared, change it to 'start'
http://bugs.webkit.org/show_bug.cgi?id=12378

  • kwq/KWQString.cpp: (QString::mid):
Location:
S60/trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r19051 r19077  
     12007-01-24  bujtas  <zbujtas@gmail.com> 
     2 
     3        Reviewed by Darin. 
     4        DESC: 'index' variable is not declared, change it to 'start'  
     5        http://bugs.webkit.org/show_bug.cgi?id=12378 
     6 
     7        * kwq/KWQString.cpp: 
     8        (QString::mid): 
     9 
    1102007-01-22  w3liu  <wei.liu@nokia.com> 
    211 
  • S60/trunk/WebCore/kwq/KWQString.cpp

    r15604 r19077  
    17271727            len = data._length - start; 
    17281728 
    1729         if ( index == 0 && len == data._length ) 
     1729        if( start == 0 && len == data._length ) 
    17301730            return *this; 
    17311731