Title: [154888] trunk/Source/WebCore
Revision
154888
Author
[email protected]
Date
2013-08-30 09:39:12 -0700 (Fri, 30 Aug 2013)

Log Message

Fix unused parameter warning in graphics/cairo/GraphicsContextCairo.cpp file.
https://bugs.webkit.org/show_bug.cgi?id=120524

Patch by Gabor Abraham <[email protected]> on 2013-08-30
Reviewed by Darin Adler.

* platform/graphics/cairo/GraphicsContextCairo.cpp:
(WebCore::GraphicsContext::fillRectWithRoundedHole):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154887 => 154888)


--- trunk/Source/WebCore/ChangeLog	2013-08-30 16:18:11 UTC (rev 154887)
+++ trunk/Source/WebCore/ChangeLog	2013-08-30 16:39:12 UTC (rev 154888)
@@ -1,3 +1,13 @@
+2013-08-30  Gabor Abraham  <[email protected]>
+
+        Fix unused parameter warning in graphics/cairo/GraphicsContextCairo.cpp file.
+        https://bugs.webkit.org/show_bug.cgi?id=120524
+
+        Reviewed by Darin Adler.
+
+        * platform/graphics/cairo/GraphicsContextCairo.cpp:
+        (WebCore::GraphicsContext::fillRectWithRoundedHole):
+
 2013-08-30  Andreas Kling  <[email protected]>
 
         StyleResolver & friends should use Document&.

Modified: trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp (154887 => 154888)


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2013-08-30 16:18:11 UTC (rev 154887)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2013-08-30 16:39:12 UTC (rev 154888)
@@ -1040,7 +1040,7 @@
     cairo_restore(cr);
 }
 
-void GraphicsContext::fillRectWithRoundedHole(const IntRect& rect, const RoundedRect& roundedHoleRect, const Color& color, ColorSpace colorSpace)
+void GraphicsContext::fillRectWithRoundedHole(const IntRect& rect, const RoundedRect& roundedHoleRect, const Color& color, ColorSpace)
 {
     if (paintingDisabled() || !color.isValid())
         return;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to