Fix warning about unused variable in qprintengine_win.cpp.

qglobal.h:979:34: warning: unused variable 'q' [-Wunused-variable]                                 ^
kernel\qprintengine_win.cpp:719:5: note: in expansion of macro 'Q_Q'

Change-Id: I7fbad6c8341a3df1a06d3914209dec22876a2f09
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
This commit is contained in:
Friedemann Kleint 2014-10-30 11:36:47 +01:00
parent 627b70d768
commit 1ef505d018

View File

@ -716,8 +716,6 @@ void QWin32PrintEnginePrivate::fillPath_dev(const QPainterPath &path, const QCol
void QWin32PrintEnginePrivate::strokePath_dev(const QPainterPath &path, const QColor &color, qreal penWidth)
{
Q_Q(QWin32PrintEngine);
composeGdiPath(path);
LOGBRUSH brush;
brush.lbStyle = BS_SOLID;