[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 14:45:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 471530101d30a25b9a8c1ec313f913241d8ca3a8
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 12:44:24 2010 +0000

    2010-10-19  Andreas Kling  <kling at webkit.org>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] Correct initial state of ImageBuffer QPen
            https://bugs.webkit.org/show_bug.cgi?id=47804
    
            Have the QPen on ImageBuffers start in Qt::SvgMiterJoin mode.
    
            * platform/graphics/qt/ImageBufferQt.cpp:
            (WebCore::ImageBufferData::ImageBufferData):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70049 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a6a29bd..f2ac373 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-19  Andreas Kling  <kling at webkit.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Correct initial state of ImageBuffer QPen
+        https://bugs.webkit.org/show_bug.cgi?id=47804
+
+        Have the QPen on ImageBuffers start in Qt::SvgMiterJoin mode.
+
+        * platform/graphics/qt/ImageBufferQt.cpp:
+        (WebCore::ImageBufferData::ImageBufferData):
+
 2010-10-19  Philippe Normand  <pnormand at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/WebCore/platform/graphics/qt/ImageBufferQt.cpp b/WebCore/platform/graphics/qt/ImageBufferQt.cpp
index 35b35b0..798eaeb 100644
--- a/WebCore/platform/graphics/qt/ImageBufferQt.cpp
+++ b/WebCore/platform/graphics/qt/ImageBufferQt.cpp
@@ -69,7 +69,7 @@ ImageBufferData::ImageBufferData(const IntSize& size)
     pen.setColor(Qt::black);
     pen.setWidth(1);
     pen.setCapStyle(Qt::FlatCap);
-    pen.setJoinStyle(Qt::MiterJoin);
+    pen.setJoinStyle(Qt::SvgMiterJoin);
     pen.setMiterLimit(10);
     painter->setPen(pen);
     QBrush brush = painter->brush();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list