⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 99807 in webkit


Ignore:
Timestamp:
Nov 9, 2011, 8:28:58 PM (15 years ago)
Author:
kevino@webkit.org
Message:

[wx] Unreviewed build fix. Don't run fontDataForCombiningCharacterSequence on wx as we don't support it yet.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r99806 r99807  
     12011-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
    1102011-11-09  Kevin Ollivier  <kevino@theolliviers.com>
    211
  • trunk/Source/WebCore/platform/graphics/mac/ComplexTextController.cpp

    r96404 r99807  
    251251
    252252    nextIsMissingGlyph = false;
     253#if !PLATFORM(WX)
    253254    nextFontData = m_font.fontDataForCombiningCharacterSequence(sequenceStart, curr - sequenceStart, nextIsSmallCaps ? SmallCapsVariant : NormalVariant);
    254255    if (!nextFontData) {
     
    258259            nextIsMissingGlyph = true;
    259260    }
     261#endif
    260262
    261263    while (curr < end) {
     
    278280
    279281        nextIsMissingGlyph = false;
     282#if !PLATFORM(WX)
    280283        nextFontData = m_font.fontDataForCombiningCharacterSequence(cp + index, curr - cp - index, nextIsSmallCaps ? SmallCapsVariant : NormalVariant);
    281284        if (!nextFontData) {
     
    285288                nextIsMissingGlyph = true;
    286289        }
     290#endif
    287291
    288292        if (nextFontData != fontData || nextIsMissingGlyph != isMissingGlyph) {
Note: See TracChangeset for help on using the changeset viewer.