Changeset 99807 in webkit
- Timestamp:
- Nov 9, 2011, 8:28:58 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/mac/ComplexTextController.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r99806 r99807 1 2011-11-09 Kevin Ollivier <kevino@theolliviers.com> 2 3 [wx] Unreviewed build fix. Don't run 4 fontDataForCombiningCharacterSequence on wx as we don't 5 support it yet. 6 7 * platform/graphics/mac/ComplexTextController.cpp: 8 (WebCore::ComplexTextController::collectComplexTextRuns): 9 1 10 2011-11-09 Kevin Ollivier <kevino@theolliviers.com> 2 11 -
trunk/Source/WebCore/platform/graphics/mac/ComplexTextController.cpp
r96404 r99807 251 251 252 252 nextIsMissingGlyph = false; 253 #if !PLATFORM(WX) 253 254 nextFontData = m_font.fontDataForCombiningCharacterSequence(sequenceStart, curr - sequenceStart, nextIsSmallCaps ? SmallCapsVariant : NormalVariant); 254 255 if (!nextFontData) { … … 258 259 nextIsMissingGlyph = true; 259 260 } 261 #endif 260 262 261 263 while (curr < end) { … … 278 280 279 281 nextIsMissingGlyph = false; 282 #if !PLATFORM(WX) 280 283 nextFontData = m_font.fontDataForCombiningCharacterSequence(cp + index, curr - cp - index, nextIsSmallCaps ? SmallCapsVariant : NormalVariant); 281 284 if (!nextFontData) { … … 285 288 nextIsMissingGlyph = true; 286 289 } 290 #endif 287 291 288 292 if (nextFontData != fontData || nextIsMissingGlyph != isMissingGlyph) {
Note:
See TracChangeset
for help on using the changeset viewer.