Changeset 54602 in webkit


Ignore:
Timestamp:
Feb 10, 2010 8:36:37 AM (14 years ago)
Author:
jchaffraix@webkit.org
Message:

Not reviewed (build fix).

  • platform/graphics/win/FontCacheWin.cpp:

(WebCore::FontCache::getLastResortFallbackFont): Return a
SimpleFontData here.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54601 r54602  
     12010-02-10  Julien Chaffraix  <jchaffraix@webkit.org>
     2
     3        Not reviewed (build fix).
     4
     5        * platform/graphics/win/FontCacheWin.cpp:
     6        (WebCore::FontCache::getLastResortFallbackFont): Return a
     7        SimpleFontData here.
     8
    192010-02-10 Julien Chaffraix  <jchaffraix@pleyo.com>
    210
  • trunk/WebCore/platform/graphics/win/FontCacheWin.cpp

    r54601 r54602  
    307307    // the default that the user would get without changing any prefs.
    308308    static AtomicString timesStr("Times New Roman");
    309     if (FontPlatformData* platformFont = getCachedFontPlatformData(fontDescription, timesStr))
    310         return platformFont;
     309    if (SimpleFontData* simpleFont = getCachedFontData(fontDescription, timesStr))
     310        return simpleFont;
    311311
    312312    DEFINE_STATIC_LOCAL(String, defaultGUIFontFamily, ());
Note: See TracChangeset for help on using the changeset viewer.