Title: [167681] trunk/Source/WebCore
Revision
167681
Author
[email protected]
Date
2014-04-22 13:49:13 -0700 (Tue, 22 Apr 2014)

Log Message

[OS X] Glyph spacing for system fonts may be incorrect
https://bugs.webkit.org/show_bug.cgi?id=131967

Unreviewed build fix after r167679.

* platform/graphics/mac/SimpleFontDataMac.mm:
(WebCore::hasCustomTracking):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (167680 => 167681)


--- trunk/Source/WebCore/ChangeLog	2014-04-22 20:40:49 UTC (rev 167680)
+++ trunk/Source/WebCore/ChangeLog	2014-04-22 20:49:13 UTC (rev 167681)
@@ -1,3 +1,13 @@
+2014-04-22  Myles C. Maxfield  <[email protected]>
+
+        [OS X] Glyph spacing for system fonts may be incorrect
+        https://bugs.webkit.org/show_bug.cgi?id=131967
+
+        Unreviewed build fix after r167679.
+
+        * platform/graphics/mac/SimpleFontDataMac.mm:
+        (WebCore::hasCustomTracking):
+
 2014-04-21  Myles C. Maxfield  <[email protected]>
 
         [OS X] Glyph spacing for system fonts may be incorrect

Modified: trunk/Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm (167680 => 167681)


--- trunk/Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm	2014-04-22 20:40:49 UTC (rev 167680)
+++ trunk/Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm	2014-04-22 20:49:13 UTC (rev 167681)
@@ -372,7 +372,7 @@
     return false;
 #else
     RetainPtr<CTFontDescriptorRef> descriptor = CTFontCopyFontDescriptor(font);
-    return CTFontDescriptorIsSystemUIFont(descriptor.get())
+    return CTFontDescriptorIsSystemUIFont(descriptor.get());
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to