Changeset 209919 in webkit


Ignore:
Timestamp:
Dec 16, 2016 8:31:55 AM (7 years ago)
Author:
jh718.park@samsung.com
Message:

[EFL] Fix build break since r209907. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=165954

  • UIProcess/efl/TextCheckerEfl.cpp: Change the remaining TextBreakIterator to UBreakIterator

(WebKit::nextWordOffset):
(WebKit::TextChecker::checkTextOfParagraph):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r209906 r209919  
     12016-12-16  Joonghun Park  <jh718.park@samsung.com>
     2
     3        [EFL] Fix build break since r209907. Unreviewed.
     4        https://bugs.webkit.org/show_bug.cgi?id=165954
     5
     6        * UIProcess/efl/TextCheckerEfl.cpp: Change the remaining TextBreakIterator to UBreakIterator
     7        (WebKit::nextWordOffset):
     8        (WebKit::TextChecker::checkTextOfParagraph):
     9
    1102016-12-15  Darin Adler  <darin@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/efl/TextCheckerEfl.cpp

    r209907 r209919  
    3535#include "TextCheckerClientEfl.h"
    3636#include "WebTextChecker.h"
     37#include <unicode/ubrk.h>
    3738#include <wtf/text/TextBreakIterator.h>
    3839#endif
     
    140141    //        For many word separators, the method doesn't properly determine the boundaries
    141142    //        without resetting the iterator.
    142     TextBreakIterator* textIterator = wordBreakIterator(text);
     143    UBreakIterator* textIterator = wordBreakIterator(text);
    143144    if (!textIterator)
    144145        return currentOffset;
     
    168169#if ENABLE(SPELLCHECK)
    169170    if (checkingTypes & TextCheckingTypeSpelling) {
    170         TextBreakIterator* textIterator = wordBreakIterator(text);
     171        UBreakIterator* textIterator = wordBreakIterator(text);
    171172        if (!textIterator)
    172173            return paragraphCheckingResult;
Note: See TracChangeset for help on using the changeset viewer.