Changeset 29915 in webkit
- Timestamp:
- Feb 1, 2008, 10:06:40 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r29914 r29915 1 2008-02-01 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - switch line breaking from using Carbon Unicode Utilities to using ICU 6 on Leopard 7 <http://bugs.webkit.org/show_bug.cgi?id=4628> 8 9 fast/text/international/thai-line-breaks.html results do not change. 10 11 * rendering/break_lines.cpp: 12 (WebCore::nextBreakablePosition): Changed to use Carbon only on Tiger. 13 1 14 2008-02-01 Rodney Dawes <dobey@wayofthemonkey.com> 2 15 -
trunk/WebCore/rendering/break_lines.cpp
r25754 r29915 63 63 } 64 64 65 #if PLATFORM(MAC)65 #ifdef BUILDING_ON_TIGER 66 66 static inline TextBreakLocatorRef lineBreakLocator() 67 67 { … … 74 74 int nextBreakablePosition(const UChar* str, int pos, int len, bool treatNoBreakSpaceAsBreak) 75 75 { 76 #if !PLATFORM(MAC)76 #ifndef BUILDING_ON_TIGER 77 77 TextBreakIterator* breakIterator = 0; 78 78 #endif … … 88 88 if (needsLineBreakIterator(ch) || needsLineBreakIterator(lastCh)) { 89 89 if (nextBreak < i && i) { 90 #if !PLATFORM(MAC)90 #ifndef BUILDING_ON_TIGER 91 91 if (!breakIterator) 92 92 breakIterator = lineBreakIterator(str, len);
Note:
See TracChangeset
for help on using the changeset viewer.