Changeset 178389 in webkit


Ignore:
Timestamp:
Jan 13, 2015 4:19:10 PM (9 years ago)
Author:
Chris Dumez
Message:

Unreviewed, fix Mac build after r178388

FontRanges::isEmpty() -> FontRanges::isNull().

  • platform/graphics/mac/FontComplexTextMac.cpp:

(WebCore::Font::fontDataForCombiningCharacterSequence):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r178388 r178389  
     12015-01-13  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, fix Mac build after r178388
     4
     5        FontRanges::isEmpty() -> FontRanges::isNull().
     6
     7        * platform/graphics/mac/FontComplexTextMac.cpp:
     8        (WebCore::Font::fontDataForCombiningCharacterSequence):
     9
    1102015-01-13  Antti Koivisto  <antti@apple.com>
    211
  • trunk/Source/WebCore/platform/graphics/mac/FontComplexTextMac.cpp

    r178388 r178389  
    139139    bool triedBaseCharacterFontData = false;
    140140
    141     for (unsigned i = 0; !fallbackRangesAt(i).isEmpty(); ++i) {
     141    for (unsigned i = 0; !fallbackRangesAt(i).isNull(); ++i) {
    142142        const SimpleFontData* simpleFontData = fallbackRangesAt(i).fontDataForCharacter(baseCharacter);
    143143        if (!simpleFontData)
Note: See TracChangeset for help on using the changeset viewer.