Title: [91231] trunk/Source/WebCore
- Revision
- 91231
- Author
- [email protected]
- Date
- 2011-07-18 18:42:19 -0700 (Mon, 18 Jul 2011)
Log Message
Leopard build fix after r91229.
* platform/graphics/cocoa/FontPlatformDataCocoa.mm:
(WebCore::FontPlatformData::ctFont):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (91230 => 91231)
--- trunk/Source/WebCore/ChangeLog 2011-07-19 01:25:36 UTC (rev 91230)
+++ trunk/Source/WebCore/ChangeLog 2011-07-19 01:42:19 UTC (rev 91231)
@@ -1,3 +1,10 @@
+2011-07-18 Ryosuke Niwa <[email protected]>
+
+ Leopard build fix after r91229.
+
+ * platform/graphics/cocoa/FontPlatformDataCocoa.mm:
+ (WebCore::FontPlatformData::ctFont):
+
2011-07-18 Dan Bernstein <[email protected]>
REGRESSION(91209?): fast/css/custom-font-xheight.html is failing on Leopard
Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm (91230 => 91231)
--- trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm 2011-07-19 01:25:36 UTC (rev 91230)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm 2011-07-19 01:42:19 UTC (rev 91231)
@@ -204,7 +204,7 @@
#if !defined(BUILDING_ON_LEOPARD)
m_CTFont.adoptCF(CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, cascadeToLastResortFontDescriptor()));
#else
- m_CTFont.adoptCF(CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, 0);
+ m_CTFont.adoptCF(CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, 0));
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes