Title: [130944] trunk/Source/WebCore
Revision
130944
Author
jchaffr...@webkit.org
Date
2012-10-10 12:59:49 -0700 (Wed, 10 Oct 2012)

Log Message

Unreviewed build fix after r130940.

* platform/graphics/skia/GraphicsContextSkia.cpp:
(WebCore::GraphicsContext::drawLineForDocumentMarker):
Avoid redefining the same variable twice.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (130943 => 130944)


--- trunk/Source/WebCore/ChangeLog	2012-10-10 19:49:26 UTC (rev 130943)
+++ trunk/Source/WebCore/ChangeLog	2012-10-10 19:59:49 UTC (rev 130944)
@@ -1,3 +1,11 @@
+2012-10-10  Julien Chaffraix  <jchaffr...@webkit.org>
+
+        Unreviewed build fix after r130940.
+
+        * platform/graphics/skia/GraphicsContextSkia.cpp:
+        (WebCore::GraphicsContext::drawLineForDocumentMarker):
+        Avoid redefining the same variable twice.
+
 2012-10-10  Alexis Menard  <ale...@webkit.org>
 
         [Mac] Deprecate getPropertyShorthand from objective c bindings for future removal

Modified: trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp (130943 => 130944)


--- trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp	2012-10-10 19:49:26 UTC (rev 130943)
+++ trunk/Source/WebCore/platform/graphics/skia/GraphicsContextSkia.cpp	2012-10-10 19:59:49 UTC (rev 130944)
@@ -646,7 +646,6 @@
         *misspellBitmap[index], SkShader::kRepeat_TileMode,
         SkShader::kRepeat_TileMode);
     SkMatrix matrix;
-    SkMatrix matrix;
     matrix.setTranslate(originX, originY);
     shader->setLocalMatrix(matrix);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to