Title: [88371] trunk/Source/WebCore
Revision
88371
Author
kev...@webkit.org
Date
2011-06-08 12:41:55 -0700 (Wed, 08 Jun 2011)

Log Message

[wx] Build fix after introduction of FontCache::ShouldRetain.

Modified Paths


Diff

Modified: trunk/Source/WebCore/ChangeLog (88370 => 88371)


--- trunk/Source/WebCore/ChangeLog	2011-06-08 19:31:48 UTC (rev 88370)
+++ trunk/Source/WebCore/ChangeLog	2011-06-08 19:41:55 UTC (rev 88371)
@@ -1,3 +1,10 @@
+2011-06-08  Kevin Ollivier  <kev...@theolliviers.com>
+
+        [wx] Build fix after introduction of FontCache::ShouldRetain
+
+        * platform/graphics/wx/FontCacheWx.cpp:
+        (WebCore::FontCache::getFontDataForCharacters):
+
 2011-06-08  Sheriff Bot  <webkit.review....@gmail.com>
 
         Unreviewed, rolling out r88365.

Modified: trunk/Source/WebCore/platform/graphics/wx/FontCacheWx.cpp (88370 => 88371)


--- trunk/Source/WebCore/platform/graphics/wx/FontCacheWx.cpp	2011-06-08 19:31:48 UTC (rev 88370)
+++ trunk/Source/WebCore/platform/graphics/wx/FontCacheWx.cpp	2011-06-08 19:41:55 UTC (rev 88371)
@@ -42,7 +42,7 @@
 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
 {
     SimpleFontData* fontData = 0;
-    fontData = getCachedFontData(font.fontDescription(), font.family().family(), false, false);
+    fontData = getCachedFontData(font.fontDescription(), font.family().family(), false, DoNotRetain);
     if (!fontData->containsCharacters(characters, length))
         fontData = getSimilarFontPlatformData(font);
     if (!fontData->containsCharacters(characters, length))
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to