Title: [124706] trunk/Source/WebCore
Revision
124706
Author
[email protected]
Date
2012-08-04 16:49:45 -0700 (Sat, 04 Aug 2012)

Log 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)).

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124705 => 124706)


--- trunk/Source/WebCore/ChangeLog	2012-08-04 22:58:30 UTC (rev 124705)
+++ trunk/Source/WebCore/ChangeLog	2012-08-04 23:49:45 UTC (rev 124706)
@@ -1,3 +1,11 @@
+2012-08-04  Dan Bernstein  <[email protected]>
+
+        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)).
+
 2012-08-04  Mike West  <[email protected]>
 
         Refactor SubframeLoader::requestPlugin/loadPlugin for clarity.

Modified: trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp (124705 => 124706)


--- trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp	2012-08-04 22:58:30 UTC (rev 124705)
+++ trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp	2012-08-04 23:49:45 UTC (rev 124706)
@@ -148,11 +148,13 @@
     return this;
 }
 
+#if !(PLATFORM(QT) && !HAVE(QRAWFONT))
 Glyph SimpleFontData::glyphForCharacter(UChar32 character) const
 {
     GlyphPageTreeNode* node = GlyphPageTreeNode::getRootChild(this, character / GlyphPage::size);
     return node->page() ? node->page()->glyphAt(character % GlyphPage::size) : 0;
 }
+#endif
 
 bool SimpleFontData::isSegmented() const
 {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to