Changeset 124706 in webkit


Ignore:
Timestamp:
Aug 4, 2012 4:49:45 PM (12 years ago)
Author:
mitz@apple.com
Message:

Tried to fix the Qt Windows build after r124654.

  • platform/graphics/SimpleFontData.cpp:

(WebCore::SimpleFontData::glyphForCharacter): Enclosed this function in
#if !(PLATFORM(QT) && !HAVE(QRAWFONT)).

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r124704 r124706  
     12012-08-04  Dan Bernstein  <mitz@apple.com>
     2
     3        Tried to fix the Qt Windows build after r124654.
     4
     5        * platform/graphics/SimpleFontData.cpp:
     6        (WebCore::SimpleFontData::glyphForCharacter): Enclosed this function in
     7        #if !(PLATFORM(QT) && !HAVE(QRAWFONT)).
     8
    192012-08-04  Mike West  <mkwst@chromium.org>
    210
  • trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp

    r124654 r124706  
    149149}
    150150
     151#if !(PLATFORM(QT) && !HAVE(QRAWFONT))
    151152Glyph SimpleFontData::glyphForCharacter(UChar32 character) const
    152153{
     
    154155    return node->page() ? node->page()->glyphAt(character % GlyphPage::size) : 0;
    155156}
     157#endif
    156158
    157159bool SimpleFontData::isSegmented() const
Note: See TracChangeset for help on using the changeset viewer.