Title: [119059] trunk/Source/WebCore
Revision
119059
Author
[email protected]
Date
2012-05-30 23:15:17 -0700 (Wed, 30 May 2012)

Log Message

Build fix for WinCE after r117697.

* page/wince/FrameWinCE.cpp:
(WebCore::computePageRectsForFrame):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119058 => 119059)


--- trunk/Source/WebCore/ChangeLog	2012-05-31 06:05:30 UTC (rev 119058)
+++ trunk/Source/WebCore/ChangeLog	2012-05-31 06:15:17 UTC (rev 119059)
@@ -1,3 +1,10 @@
+2012-05-30  Patrick Gansterer  <[email protected]>
+
+        Build fix for WinCE after r117697.
+
+        * page/wince/FrameWinCE.cpp:
+        (WebCore::computePageRectsForFrame):
+
 2012-05-30  Shawn Singh  <[email protected]>
 
         [chromium] Fix min/max bounds error in CCMathUtil.cpp

Modified: trunk/Source/WebCore/page/wince/FrameWinCE.cpp (119058 => 119059)


--- trunk/Source/WebCore/page/wince/FrameWinCE.cpp	2012-05-31 06:05:30 UTC (rev 119058)
+++ trunk/Source/WebCore/page/wince/FrameWinCE.cpp	2012-05-31 06:15:17 UTC (rev 119059)
@@ -76,7 +76,7 @@
 
     float ratio = (float)printRect.height() / (float)printRect.width();
 
-    float pageWidth  = (float) root->maxXLayoutOverflow();
+    float pageWidth  = (float) root->layoutOverflowRect().maxX();
     float pageHeight = pageWidth * ratio;
     outPageHeight = (int) pageHeight;   // this is the height of the page adjusted by margins
     pageHeight -= (headerHeight + footerHeight);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to