Title: [103110] trunk/Source/WebKit/mac
- Revision
- 103110
- Author
- [email protected]
- Date
- 2011-12-16 14:30:49 -0800 (Fri, 16 Dec 2011)
Log Message
Fix a #elsif fumble in my earlier commit.
* WebView/WebHTMLView.mm:
(-[WebHTMLView attachRootLayer:]):
Modified Paths
Diff
Modified: trunk/Source/WebKit/mac/ChangeLog (103109 => 103110)
--- trunk/Source/WebKit/mac/ChangeLog 2011-12-16 22:29:02 UTC (rev 103109)
+++ trunk/Source/WebKit/mac/ChangeLog 2011-12-16 22:30:49 UTC (rev 103110)
@@ -1,3 +1,10 @@
+2011-12-16 Simon Fraser <[email protected]>
+
+ Fix a #elsif fumble in my earlier commit.
+
+ * WebView/WebHTMLView.mm:
+ (-[WebHTMLView attachRootLayer:]):
+
2011-12-16 Ryosuke Niwa <[email protected]>
Only EditCommandComposition should implement unapply and reapply
Modified: trunk/Source/WebKit/mac/WebView/WebHTMLView.mm (103109 => 103110)
--- trunk/Source/WebKit/mac/WebView/WebHTMLView.mm 2011-12-16 22:29:02 UTC (rev 103109)
+++ trunk/Source/WebKit/mac/WebView/WebHTMLView.mm 2011-12-16 22:30:49 UTC (rev 103110)
@@ -5498,7 +5498,7 @@
#ifdef BUILDING_ON_LEOPARD
[viewLayer setSublayerTransform:CATransform3DMakeScale(1, -1, 1)]; // setGeometryFlipped: doesn't exist on Leopard.
[self _updateLayerHostingViewPosition];
-#elsif (BUILDING_ON_SNOW_LEOPARD || BUILDING_ON_LION)
+#elif (defined(BUILDING_ON_SNOW_LEOPARD) || defined(BUILDING_ON_LION))
// Do geometry flipping here, which flips all the compositing layers so they are top-down.
[viewLayer setGeometryFlipped:YES];
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes