Title: [182521] trunk/Source/WebCore
- Revision
- 182521
- Author
- [email protected]
- Date
- 2015-04-07 23:03:32 -0700 (Tue, 07 Apr 2015)
Log Message
Unreviewed, another iOS build fix after r182516.
I missed another use of __MAC_OS_X_VERSION_MIN_REQUIRED without a
PLATFORM(MAC) check.
* platform/graphics/cocoa/FontCascadeCocoa.mm:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (182520 => 182521)
--- trunk/Source/WebCore/ChangeLog 2015-04-08 05:57:02 UTC (rev 182520)
+++ trunk/Source/WebCore/ChangeLog 2015-04-08 06:03:32 UTC (rev 182521)
@@ -1,3 +1,12 @@
+2015-04-07 Chris Dumez <[email protected]>
+
+ Unreviewed, another iOS build fix after r182516.
+
+ I missed another use of __MAC_OS_X_VERSION_MIN_REQUIRED without a
+ PLATFORM(MAC) check.
+
+ * platform/graphics/cocoa/FontCascadeCocoa.mm:
+
2015-04-07 Michael Peechatt <[email protected]>
Bug 142887 - role progress bar does not support indeterminate state
Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm (182520 => 182521)
--- trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm 2015-04-08 05:57:02 UTC (rev 182520)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontCascadeCocoa.mm 2015-04-08 06:03:32 UTC (rev 182521)
@@ -203,7 +203,7 @@
}
#endif
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
+#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
static CGSize dilationSizeForTextColor(const Color& color)
{
double hue;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes