Title: [99735] trunk/Source/WebKit2
Revision
99735
Author
[email protected]
Date
2011-11-09 10:41:14 -0800 (Wed, 09 Nov 2011)

Log Message

Fixing build on MacOSX SL after 71838
https://bugs.webkit.org/show_bug.cgi?id=71912

Reviewed by Anders Carlsson.

* WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
(WebKit::TiledCoreAnimationDrawingArea::TiledCoreAnimationDrawingArea):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99734 => 99735)


--- trunk/Source/WebKit2/ChangeLog	2011-11-09 18:14:09 UTC (rev 99734)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-09 18:41:14 UTC (rev 99735)
@@ -1,3 +1,13 @@
+2011-11-09  Alexandru Chiculita  <[email protected]>
+
+        Fixing build on MacOSX SL after 71838
+        https://bugs.webkit.org/show_bug.cgi?id=71912
+
+        Reviewed by Anders Carlsson.
+
+        * WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
+        (WebKit::TiledCoreAnimationDrawingArea::TiledCoreAnimationDrawingArea):
+
 2011-11-09  Kenneth Rohde Christiansen  <[email protected]>
 
         [WebKit2] Prepare viewport meta handling for desktop usage

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


--- trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm	2011-11-09 18:14:09 UTC (rev 99734)
+++ trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm	2011-11-09 18:41:14 UTC (rev 99735)
@@ -51,7 +51,7 @@
 {
     m_rootLayer = [CALayer layer];
 
-    m_rootLayer.get().frame = m_webPage->bounds();
+    m_rootLayer.get().frame = (CGRect)m_webPage->bounds();
     m_rootLayer.get().opaque = YES;
 
     // Give the root layer a background color so it's visible on screen.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to