Title: [90454] trunk/Source/WebCore
Revision
90454
Author
abe...@webkit.org
Date
2011-07-06 06:17:40 -0700 (Wed, 06 Jul 2011)

Log Message

2011-07-06  Andras Becsi  <abe...@webkit.org>

        [Qt] Revome unused but set shadowBlur variable after r90406.

        Unreviewed build fix.

        No new tests needed.

        * platform/graphics/qt/GraphicsContextQt.cpp:
        (WebCore::GraphicsContext::fillPath): Use the GraphicsContext brush.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90453 => 90454)


--- trunk/Source/WebCore/ChangeLog	2011-07-06 12:18:15 UTC (rev 90453)
+++ trunk/Source/WebCore/ChangeLog	2011-07-06 13:17:40 UTC (rev 90454)
@@ -1,5 +1,16 @@
 2011-07-06  Andras Becsi  <abe...@webkit.org>
 
+        [Qt] Revome unused but set shadowBlur variable after r90406.
+
+        Unreviewed build fix.
+
+        No new tests needed.
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+        (WebCore::GraphicsContext::fillPath): Use the GraphicsContext brush.
+
+2011-07-06  Andras Becsi  <abe...@webkit.org>
+
         [Qt] Remove duplicate entries of ShadowBlur sources from project file.
 
         Rubber-stamped by Csaba Osztrogonác.

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp (90453 => 90454)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp	2011-07-06 12:18:15 UTC (rev 90453)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp	2011-07-06 13:17:40 UTC (rev 90454)
@@ -523,8 +523,7 @@
                     brush.setTransform(m_state.fillGradient->gradientSpaceTransform());
                     shadowPainter->fillPath(platformPath, brush);
                 } else {
-                    QColor shadowColor = m_state.shadowColor;
-                    shadowPainter->fillPath(platformPath, p->brush().color());
+                    shadowPainter->fillPath(platformPath, p->brush());
                 }
                 shadow->endShadowLayer(this);
             }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to