Title: [188141] trunk/Source/WebCore
Revision
188141
Author
[email protected]
Date
2015-08-07 11:27:16 -0700 (Fri, 07 Aug 2015)

Log Message

Fix WinCairo build after r188130.

* platform/graphics/win/FontCustomPlatformDataCairo.cpp:
(WebCore::FontCustomPlatformData::~FontCustomPlatformData):
(WebCore::FontCustomPlatformData::fontPlatformData):
I forgot the parameter name.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (188140 => 188141)


--- trunk/Source/WebCore/ChangeLog	2015-08-07 18:22:59 UTC (rev 188140)
+++ trunk/Source/WebCore/ChangeLog	2015-08-07 18:27:16 UTC (rev 188141)
@@ -5,6 +5,15 @@
         * platform/graphics/win/FontCustomPlatformDataCairo.cpp:
         (WebCore::FontCustomPlatformData::~FontCustomPlatformData):
         (WebCore::FontCustomPlatformData::fontPlatformData):
+        I forgot the parameter name.
+
+2015-08-07  Alex Christensen  <[email protected]>
+
+        Fix WinCairo build after r188130.
+
+        * platform/graphics/win/FontCustomPlatformDataCairo.cpp:
+        (WebCore::FontCustomPlatformData::~FontCustomPlatformData):
+        (WebCore::FontCustomPlatformData::fontPlatformData):
         Update fontPlatformData parameters.
 
 2015-08-07  Daniel Bates  <[email protected]>

Modified: trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformDataCairo.cpp (188140 => 188141)


--- trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformDataCairo.cpp	2015-08-07 18:22:59 UTC (rev 188140)
+++ trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformDataCairo.cpp	2015-08-07 18:27:16 UTC (rev 188141)
@@ -39,7 +39,7 @@
         RemoveFontMemResourceEx(m_fontReference);
 }
 
-FontPlatformData FontCustomPlatformData::fontPlatformData(const FontDescription&, bool bold, bool italic)
+FontPlatformData FontCustomPlatformData::fontPlatformData(const FontDescription& fontDescription, bool bold, bool italic)
 {
     int size = fontDescription.computedPixelSize();
     FontRenderingMode renderingMode = fontDescription.renderingMode();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to