Title: [99913] trunk/Source/WebKit2
Revision
99913
Author
[email protected]
Date
2011-11-10 16:32:33 -0800 (Thu, 10 Nov 2011)

Log Message

Fix 32-bit build.

* WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
(-[WKContentLayer drawInContext:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99912 => 99913)


--- trunk/Source/WebKit2/ChangeLog	2011-11-11 00:28:42 UTC (rev 99912)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-11 00:32:33 UTC (rev 99913)
@@ -1,3 +1,10 @@
+2011-11-10  Anders Carlsson  <[email protected]>
+
+        Fix 32-bit build.
+
+        * WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
+        (-[WKContentLayer drawInContext:]):
+
 2011-11-10  Beth Dakin  <[email protected]>
 
         Speculative build fix.

Modified: trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm (99912 => 99913)


--- trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm	2011-11-11 00:28:42 UTC (rev 99912)
+++ trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm	2011-11-11 00:32:33 UTC (rev 99913)
@@ -66,7 +66,7 @@
     CGRect clipRect = CGContextGetClipBoundingBox(context);
 
     GraphicsContext graphicsContext(context);
-    _webPage->drawRect(graphicsContext, enclosingIntRect(clipRect));
+    _webPage->drawRect(graphicsContext, enclosingIntRect(NSRectFromCGRect(clipRect)));
 }
 
 @end
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to