Title: [193523] branches/safari-601-branch/Source/WebCore
Revision
193523
Author
matthew_han...@apple.com
Date
2015-12-05 10:30:30 -0800 (Sat, 05 Dec 2015)

Log Message

Merge r187709. rdar://problem/23769732

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebCore/ChangeLog (193522 => 193523)


--- branches/safari-601-branch/Source/WebCore/ChangeLog	2015-12-05 18:30:28 UTC (rev 193522)
+++ branches/safari-601-branch/Source/WebCore/ChangeLog	2015-12-05 18:30:30 UTC (rev 193523)
@@ -1,5 +1,18 @@
 2015-12-05  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r187709. rdar://problem/23769732
+
+    2015-07-31  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+            Fix the build
+
+            Unreviewed.
+
+            * platform/graphics/mac/FontCacheMac.mm:
+            (WebCore::lookupCTFont):
+
+2015-12-05  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r190667. rdar://problem/23769584
 
     2015-10-06  Simon Fraser  <simon.fra...@apple.com>

Modified: branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm (193522 => 193523)


--- branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm	2015-12-05 18:30:28 UTC (rev 193522)
+++ branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm	2015-12-05 18:30:30 UTC (rev 193523)
@@ -485,7 +485,9 @@
 
 static inline RetainPtr<CTFontRef> lookupCTFont(CTFontRef font, float fontSize, const UChar* characters, unsigned length)
 {
-#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1090
+#if __MAC_OS_X_VERSION_MIN_REQUIRED != 1090
+    UNUSED_PARAM(fontSize);
+#else
     if (!font) {
         font = reinterpret_cast<CTFontRef>([NSFont userFontOfSize:fontSize]);
         bool acceptable = true;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to