Title: [183270] trunk/Source/WebCore
Revision
183270
Author
mmaxfi...@apple.com
Date
2015-04-24 11:26:14 -0700 (Fri, 24 Apr 2015)

Log Message

Unreviewed build fix.

* platform/graphics/cocoa/FontPlatformDataCocoa.mm:
(WebCore::FontPlatformData::FontPlatformData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (183269 => 183270)


--- trunk/Source/WebCore/ChangeLog	2015-04-24 18:12:31 UTC (rev 183269)
+++ trunk/Source/WebCore/ChangeLog	2015-04-24 18:26:14 UTC (rev 183270)
@@ -1,5 +1,12 @@
 2015-04-24  Myles C. Maxfield  <mmaxfi...@apple.com>
 
+        Unreviewed build fix.
+
+        * platform/graphics/cocoa/FontPlatformDataCocoa.mm:
+        (WebCore::FontPlatformData::FontPlatformData):
+
+2015-04-24  Myles C. Maxfield  <mmaxfi...@apple.com>
+
         [Cocoa] Start cleaning up FontPlatformData
         https://bugs.webkit.org/show_bug.cgi?id=144133
 

Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm (183269 => 183270)


--- trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm	2015-04-24 18:12:31 UTC (rev 183269)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm	2015-04-24 18:26:14 UTC (rev 183270)
@@ -42,7 +42,7 @@
 enum TextSpacingCTFeatureSelector { TextSpacingProportional, TextSpacingFullWidth, TextSpacingHalfWidth, TextSpacingThirdWidth, TextSpacingQuarterWidth };
 
 FontPlatformData::FontPlatformData(CTFontRef font, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation, FontWidthVariant widthVariant)
-    : FontPlatformData(adoptCF(CTFontCopyGraphicsFont(font, NULL)), size, syntheticBold, syntheticOblique, orientation, widthVariant)
+    : FontPlatformData(adoptCF(CTFontCopyGraphicsFont(font, NULL)).get(), size, syntheticBold, syntheticOblique, orientation, widthVariant)
 {
     ASSERT_ARG(font, font);
     m_font = font;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to