Title: [130274] trunk/Source/WebCore
Revision
130274
Author
[email protected]
Date
2012-10-03 04:04:57 -0700 (Wed, 03 Oct 2012)

Log Message

Build fix for WinCE after r130160.

* platform/graphics/FontFastPath.cpp:
(WebCore::Font::glyphDataAndPageForCharacter):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (130273 => 130274)


--- trunk/Source/WebCore/ChangeLog	2012-10-03 10:15:21 UTC (rev 130273)
+++ trunk/Source/WebCore/ChangeLog	2012-10-03 11:04:57 UTC (rev 130274)
@@ -1,3 +1,10 @@
+2012-10-03  Patrick Gansterer  <[email protected]>
+
+        Build fix for WinCE after r130160.
+
+        * platform/graphics/FontFastPath.cpp:
+        (WebCore::Font::glyphDataAndPageForCharacter):
+
 2012-10-03  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: RTCPeerConnection should send down its handler via the FrameLoaderClient directly after creation.

Modified: trunk/Source/WebCore/platform/graphics/FontFastPath.cpp (130273 => 130274)


--- trunk/Source/WebCore/platform/graphics/FontFastPath.cpp	2012-10-03 10:15:21 UTC (rev 130273)
+++ trunk/Source/WebCore/platform/graphics/FontFastPath.cpp	2012-10-03 11:04:57 UTC (rev 130274)
@@ -216,7 +216,7 @@
             // Also, sometimes we cannot map a font for the character on WINCE, but GDI can still
             // display the character, probably because the font package is not installed correctly.
             // So we just always set the glyph to be same as the character, and let GDI solve it.
-            page->setGlyphDataForCharacter(c, c, characterFontData);
+            page->setGlyphDataForCharacter(c, c, characterFontData.get());
             characterFontData->setMaxGlyphPageTreeLevel(max(characterFontData->maxGlyphPageTreeLevel(), node->level()));
             return make_pair(page->glyphDataForCharacter(c), page);
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to