Show
Ignore:
Timestamp:
03/15/10 14:08:06 (6 months ago)
Author:
gbertal
Message:

merge with webkit revision 55986

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/Internationalization/WebCore/Qt/BCTextBreakIteratorQt.cpp

    r1126 r1404  
    4141    TextBreakIterator* wordBreakIterator(const UChar* string, int length) 
    4242    { 
    43         if (!string
     43        if (!string || !length
    4444            return 0; 
    4545        if (!iterator) 
     
    5252    TextBreakIterator* characterBreakIterator(const UChar* string, int length) 
    5353    { 
    54         if (!string
     54        if (!string || !length
    5555            return 0; 
    5656        if (!iterator) 
     
    6969    { 
    7070        static QTextBoundaryFinder *iterator = 0; 
    71         if (!string
     71        if (!string || !length
    7272            return 0; 
    7373        if (!iterator) 
     
    8080    TextBreakIterator* sentenceBreakIterator(const UChar* string, int length) 
    8181    { 
    82         if (!string
     82        if (!string || !length
    8383            return 0; 
    8484        if (!iterator)