Title: [161854] trunk/Source/WebCore
Revision
161854
Author
[email protected]
Date
2014-01-12 19:18:28 -0800 (Sun, 12 Jan 2014)

Log Message

Fix iOS build breakage from http://trac.webkit.org/changeset/161844
https://bugs.webkit.org/show_bug.cgi?id=126866

Reviewed by Simon Fraser.

* platform/text/TextBreakIteratorICU.cpp:
(WebCore::cursorMovementIterator): Use initializeIterator instead of createSharedIterator,
which does not exist.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161853 => 161854)


--- trunk/Source/WebCore/ChangeLog	2014-01-13 02:42:54 UTC (rev 161853)
+++ trunk/Source/WebCore/ChangeLog	2014-01-13 03:18:28 UTC (rev 161854)
@@ -1,3 +1,14 @@
+2014-01-12  Maciej Stachowiak  <[email protected]>
+
+        Fix iOS build breakage from http://trac.webkit.org/changeset/161844
+        https://bugs.webkit.org/show_bug.cgi?id=126866
+
+        Reviewed by Simon Fraser.
+
+        * platform/text/TextBreakIteratorICU.cpp:
+        (WebCore::cursorMovementIterator): Use initializeIterator instead of createSharedIterator,
+        which does not exist.
+
 2014-01-12  Darin Adler  <[email protected]>
 
         Add PLATFORM(COCOA) and USE(FOUNDATION)

Modified: trunk/Source/WebCore/platform/text/TextBreakIteratorICU.cpp (161853 => 161854)


--- trunk/Source/WebCore/platform/text/TextBreakIteratorICU.cpp	2014-01-13 02:42:54 UTC (rev 161853)
+++ trunk/Source/WebCore/platform/text/TextBreakIteratorICU.cpp	2014-01-13 03:18:28 UTC (rev 161854)
@@ -246,7 +246,7 @@
     static TextBreakIterator* staticCursorMovementIterator = initializeIteratorWithRules(kRules);
 #else // PLATFORM(IOS)
     // Use the special Thai character break iterator for all locales
-    static TextBreakIterator* staticCursorMovementIterator = createSharedIterator(UBRK_CHARACTER, "th");
+    static TextBreakIterator* staticCursorMovementIterator = initializeIterator(UBRK_CHARACTER, "th");
 #endif // !PLATFORM(IOS)
 
     if (!staticCursorMovementIterator)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to