From 4b818747fcbec94b48c398bc712f696e360ad257 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Mon, 12 Dec 2022 10:41:57 +0100 Subject: [PATCH] Silence compiler warnings about unused variables Change-Id: I02e51868f762292b0a6b57d38a5bd25335b19621 Reviewed-by: Eirik Aavitsland (cherry picked from commit 70b3df00f946f1ad278aa6c51eaba170eb9fd271) Reviewed-by: Volker Hilsheimer --- tests/baseline/shared/paintcommands.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/baseline/shared/paintcommands.h b/tests/baseline/shared/paintcommands.h index 0d8044fc470..4d4ed0e2899 100644 --- a/tests/baseline/shared/paintcommands.h +++ b/tests/baseline/shared/paintcommands.h @@ -43,15 +43,13 @@ class PaintCommands { public: // construction / initialization - PaintCommands(const QStringList &cmds, int w, int h, QImage::Format format) + PaintCommands(const QStringList &cmds, int /*w*/, int /*h*/, QImage::Format format) : m_painter(0) , m_surface_painter(0) , m_format(format) , m_commands(cmds) , m_gradientSpread(QGradient::PadSpread) , m_gradientCoordinate(QGradient::LogicalMode) - , m_width(w) - , m_height(h) , m_verboseMode(false) , m_type(WidgetType) , m_checkers_background(true) @@ -62,7 +60,9 @@ public: , m_surface_glbuffer(0) , m_surface_glpaintdevice(0) #endif - { staticInit(); } + { + staticInit(); + } public: void setCheckersBackground(bool b) { staticInit(); m_checkers_background = b; } @@ -251,8 +251,6 @@ private: QGradient::Spread m_gradientSpread; QGradient::CoordinateMode m_gradientCoordinate; bool m_abort; - int m_width; - int m_height; bool m_verboseMode; DeviceType m_type;