Title: [103869] trunk/Source/WebKit2
Revision
103869
Author
[email protected]
Date
2011-12-31 17:59:47 -0800 (Sat, 31 Dec 2011)

Log Message

Start trying to fix the Windows build after r103858.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::drawPDFPage):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (103868 => 103869)


--- trunk/Source/WebKit2/ChangeLog	2012-01-01 01:23:04 UTC (rev 103868)
+++ trunk/Source/WebKit2/ChangeLog	2012-01-01 01:59:47 UTC (rev 103869)
@@ -1,5 +1,12 @@
 2011-12-31  Dan Bernstein  <[email protected]>
 
+        Start trying to fix the Windows build after r103858.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::drawPDFPage):
+
+2011-12-31  Dan Bernstein  <[email protected]>
+
         <rdar://problem/10463059> Cannot print USPS shipping labels
         http://webkit.org/b/72801
 

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (103868 => 103869)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2012-01-01 01:23:04 UTC (rev 103868)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2012-01-01 01:59:47 UTC (rev 103869)
@@ -2681,7 +2681,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