[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:51:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 96a3233a66f359b551630b25b0d2f4a4749d9ee4
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 12 23:03:21 2003 +0000

    	Fix for 3262190, <li> bullets in mail were overly massive.  The bezier path the
    	painter stroked was not setting the line width from QPen's width, so it ended up
    	just using the current line width instead (which happened to be much larger in
    	Mail).
    
            Reviewed by darin
    
            * kwq/KWQPainter.mm:
            (QPainter::drawEllipse):
            (QPainter::drawArc):
            (QPainter::_drawPoints):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4811 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 29ea65f..faabe23 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,17 @@
+2003-08-12  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3262190, <li> bullets in mail were overly massive.  The bezier path the
+	painter stroked was not setting the line width from QPen's width, so it ended up
+	just using the current line width instead (which happened to be much larger in
+	Mail).
+	
+        Reviewed by darin
+
+        * kwq/KWQPainter.mm:
+        (QPainter::drawEllipse):
+        (QPainter::drawArc):
+        (QPainter::_drawPoints):
+
 2003-08-12  John Sullivan  <sullivan at apple.com>
 
 	- fixed 3370614 -- REGRESSION (81-85): partial inline input from Japanese 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 29ea65f..faabe23 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,17 @@
+2003-08-12  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3262190, <li> bullets in mail were overly massive.  The bezier path the
+	painter stroked was not setting the line width from QPen's width, so it ended up
+	just using the current line width instead (which happened to be much larger in
+	Mail).
+	
+        Reviewed by darin
+
+        * kwq/KWQPainter.mm:
+        (QPainter::drawEllipse):
+        (QPainter::drawArc):
+        (QPainter::_drawPoints):
+
 2003-08-12  John Sullivan  <sullivan at apple.com>
 
 	- fixed 3370614 -- REGRESSION (81-85): partial inline input from Japanese 
diff --git a/WebCore/kwq/KWQPainter.mm b/WebCore/kwq/KWQPainter.mm
index 33d3ab9..0055afc 100644
--- a/WebCore/kwq/KWQPainter.mm
+++ b/WebCore/kwq/KWQPainter.mm
@@ -327,6 +327,7 @@ void QPainter::drawEllipse(int x, int y, int w, int h)
     }
     if (data->state.pen.style() != NoPen) {
         _setColorFromPen();
+        [path setLineWidth:data->state.pen.width()];
         [path stroke];
     }
 }
@@ -353,6 +354,7 @@ void QPainter::drawArc (int x, int y, int w, int h, int a, int alen)
                                       clockwise:YES];
     
         _setColorFromPen();
+        [path setLineWidth:data->state.pen.width()];
         [path stroke];
         [path release];
     }
@@ -406,6 +408,7 @@ void QPainter::_drawPoints (const QPointArray &_points, bool winding, int index,
 
     if (data->state.pen.style() != NoPen) {
         _setColorFromPen();
+        [path setLineWidth:data->state.pen.width()];
         [path stroke];
     }
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list