Title: [105114] branches/safari-534.54-branch/Source/WebKit2

Diff

Modified: branches/safari-534.54-branch/Source/WebKit2/ChangeLog (105113 => 105114)


--- branches/safari-534.54-branch/Source/WebKit2/ChangeLog	2012-01-17 01:21:31 UTC (rev 105113)
+++ branches/safari-534.54-branch/Source/WebKit2/ChangeLog	2012-01-17 01:21:36 UTC (rev 105114)
@@ -1,5 +1,16 @@
 2012-01-16  Mark Rowe  <[email protected]>
 
+        Merge r103869.
+
+    2011-12-31  Dan Bernstein  <[email protected]>
+
+        Start trying to fix the Windows build after r103858.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::drawPDFPage):
+
+2012-01-16  Mark Rowe  <[email protected]>
+
         Merge r103858.
 
     2011-12-31  Dan Bernstein  <[email protected]>

Modified: branches/safari-534.54-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (105113 => 105114)


--- branches/safari-534.54-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2012-01-17 01:21:31 UTC (rev 105113)
+++ branches/safari-534.54-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2012-01-17 01:21:36 UTC (rev 105114)
@@ -2365,7 +2365,7 @@
         CGContextTranslateCTM(context, roundCGFloat(widthDifference / 2), roundCGFloat(heightDifference / 2));
 
     if (shouldRotate) {
-        CGContextRotateCTM(context, M_PI_2);
+        CGContextRotateCTM(context, static_cast<CGFloat>(piOverTwoDouble));
         CGContextTranslateCTM(context, 0, -cropBox.size.width);
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to