[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

krit at webkit.org krit at webkit.org
Fri Feb 26 22:14:46 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit c51f8c15d4a416f506cbe149a0019b166cd8710b
Author: krit at webkit.org <krit at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Feb 8 20:55:42 2010 +0000

    2010-02-08  Dirk Schulze  <krit at webkit.org>
    
            Unreviewed windows build-fix.
    
            * page/win/FrameCGWin.cpp:
            (WebCore::drawRectIntoContext):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54505 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a5f31c9..b9a57e8 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-02-08  Dirk Schulze  <krit at webkit.org>
 
+        Unreviewed windows build-fix.
+
+        * page/win/FrameCGWin.cpp:
+        (WebCore::drawRectIntoContext):
+
+2010-02-08  Dirk Schulze  <krit at webkit.org>
+
         Reviewed by Nikolas Zimmermann.
 
         Add back an AffineTransform class for use by SVG
diff --git a/WebCore/page/win/FrameCGWin.cpp b/WebCore/page/win/FrameCGWin.cpp
index d9e577b..cce5004 100644
--- a/WebCore/page/win/FrameCGWin.cpp
+++ b/WebCore/page/win/FrameCGWin.cpp
@@ -45,7 +45,7 @@ static void drawRectIntoContext(IntRect rect, FrameView* view, GraphicsContext*
     rect.move(-offset.width(), -offset.height());
     rect = view->convertToContainingWindow(rect);
 
-    gc->concatCTM(TransformationMatrix().translate(-rect.x(), -rect.y()));
+    gc->concatCTM(AffineTransform().translate(-rect.x(), -rect.y()));
 
     view->paint(gc, rect);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list