Title: [175019] trunk/Source/WebCore
Revision
175019
Author
[email protected]
Date
2014-10-21 21:33:11 -0700 (Tue, 21 Oct 2014)

Log Message

One more iOS build fix after r175013.

* platform/graphics/ios/FontCacheIOS.mm:
(WebCore::FontCache::createFontPlatformData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175018 => 175019)


--- trunk/Source/WebCore/ChangeLog	2014-10-22 03:28:29 UTC (rev 175018)
+++ trunk/Source/WebCore/ChangeLog	2014-10-22 04:33:11 UTC (rev 175019)
@@ -1,3 +1,10 @@
+2014-10-21  Andy Estes  <[email protected]>
+
+        One more iOS build fix after r175013.
+
+        * platform/graphics/ios/FontCacheIOS.mm:
+        (WebCore::FontCache::createFontPlatformData):
+
 2014-10-21  Benjamin Poulain  <[email protected]>
 
         CSS Rule features are ignored for nested CSS Selector lists

Modified: trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm (175018 => 175019)


--- trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm	2014-10-22 03:28:29 UTC (rev 175018)
+++ trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm	2014-10-22 04:33:11 UTC (rev 175019)
@@ -657,7 +657,7 @@
     auto result = std::make_unique<FontPlatformData>(ctFont.get(), size, fontDescription.usePrinterFont(), syntheticBold, syntheticOblique, fontDescription.orientation(), fontDescription.widthVariant());
     if (isAppleColorEmoji)
         result->m_isEmoji = true;
-    return adoptPtr(result);
+    return result;
 }
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to