Title: [188743] trunk/Source/WebCore
Revision
188743
Author
mmaxfi...@apple.com
Date
2015-08-20 19:54:27 -0700 (Thu, 20 Aug 2015)

Log Message

[OS X] Cleaup after r188591
https://bugs.webkit.org/show_bug.cgi?id=148219

Unreviewed.

Forgot to update a call site of FontPlatformData().

* platform/graphics/mac/FontCacheMac.mm:
(WebCore::FontCache::systemFallbackForCharacters):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (188742 => 188743)


--- trunk/Source/WebCore/ChangeLog	2015-08-21 02:51:33 UTC (rev 188742)
+++ trunk/Source/WebCore/ChangeLog	2015-08-21 02:54:27 UTC (rev 188743)
@@ -1,3 +1,15 @@
+2015-08-20  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        [OS X] Cleaup after r188591
+        https://bugs.webkit.org/show_bug.cgi?id=148219
+
+        Unreviewed.
+
+        Forgot to update a call site of FontPlatformData().
+
+        * platform/graphics/mac/FontCacheMac.mm:
+        (WebCore::FontCache::systemFallbackForCharacters):
+
 2015-08-20  Alex Christensen  <achristen...@webkit.org>
 
         Build fix after r188716.

Modified: trunk/Source/WebCore/platform/graphics/mac/FontCacheMac.mm (188742 => 188743)


--- trunk/Source/WebCore/platform/graphics/mac/FontCacheMac.mm	2015-08-21 02:51:33 UTC (rev 188742)
+++ trunk/Source/WebCore/platform/graphics/mac/FontCacheMac.mm	2015-08-21 02:54:27 UTC (rev 188743)
@@ -579,7 +579,7 @@
     FontPlatformData alternateFont(toCTFont(substituteFont), platformData.size(),
         !isPlatformFont && isAppKitFontWeightBold(weight) && !isAppKitFontWeightBold(substituteFontWeight),
         !isPlatformFont && (traits & NSFontItalicTrait) && !(substituteFontTraits & NSFontItalicTrait),
-        platformData.m_orientation);
+        platformData.m_orientation, platformData.m_widthVariant, platformData.m_textRenderingMode);
 
     return fontForPlatformData(alternateFont);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to