Silence compiler warnings about unused variables

Change-Id: I02e51868f762292b0a6b57d38a5bd25335b19621
Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
(cherry picked from commit 70b3df00f946f1ad278aa6c51eaba170eb9fd271)
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Volker Hilsheimer 2022-12-12 10:41:57 +01:00
parent c0f756da3f
commit 4b818747fc

View File

@ -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;