Title: [268729] trunk/Source/WebCore
Revision
268729
Author
commit-qu...@webkit.org
Date
2020-10-20 08:17:47 -0700 (Tue, 20 Oct 2020)

Log Message

Unused parameter warning in GraphicsContextCairo.cpp
https://bugs.webkit.org/show_bug.cgi?id=217954

Unreviewed.

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2020-10-20

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (268728 => 268729)


--- trunk/Source/WebCore/ChangeLog	2020-10-20 15:02:18 UTC (rev 268728)
+++ trunk/Source/WebCore/ChangeLog	2020-10-20 15:17:47 UTC (rev 268729)
@@ -1,3 +1,13 @@
+2020-10-20  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        Unused parameter warning in GraphicsContextCairo.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=217954
+
+        Unreviewed.
+
+        * platform/graphics/cairo/GraphicsContextCairo.cpp:
+        (WebCore::GraphicsContext::platformDrawNativeImage):
+
 2020-10-20  Chris Dumez  <cdu...@apple.com>
 
         Drop explicit calls to BaseAudioContext::refNode()

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


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2020-10-20 15:02:18 UTC (rev 268728)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp	2020-10-20 15:17:47 UTC (rev 268729)
@@ -123,7 +123,7 @@
     Cairo::drawRect(*platformContext(), rect, borderThickness, state.fillColor, state.strokeStyle, state.strokeColor);
 }
 
-void GraphicsContext::platformDrawNativeImage(const NativeImagePtr& image, const FloatSize& imageSize, const FloatRect& destRect, const FloatRect& srcRect, const ImagePaintingOptions& options)
+void GraphicsContext::platformDrawNativeImage(const NativeImagePtr& image, const FloatSize&, const FloatRect& destRect, const FloatRect& srcRect, const ImagePaintingOptions& options)
 {
     if (paintingDisabled())
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to