diff options
author | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2020-01-29 19:58:01 +0100 |
---|---|---|
committer | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2020-01-31 06:23:58 +0100 |
commit | c7f59cad196dae2ee83e2073e546428695f0e1f0 (patch) | |
tree | c911fb079b1ad679f4d1d0cbe7fb2cdbaac184fb /examples/widgets/touch | |
parent | 9ede07613dc5b7759f398d5a8839b2ffdb4675a2 (diff) | |
download | qtbase-c7f59cad196dae2ee83e2073e546428695f0e1f0.tar.gz |
Examples: fix compile without printsupport
Checking for QT_CONFIG(printdialog) is not enough when printsupport is
completely disabled since then the macro will throw an error. Therefore
add an additional check 'defined(QT_PRINTSUPPORT_LIB)' before using the
QT_CONFIG macro.
Fixes: QTBUG-81626
Change-Id: Ie9898f057cdd6bf9daf4ba9135987cb6e901e7bf
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/widgets/touch')
-rw-r--r-- | examples/widgets/touch/fingerpaint/scribblearea.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/touch/fingerpaint/scribblearea.cpp b/examples/widgets/touch/fingerpaint/scribblearea.cpp index 0b0c4476d9..e490495cd9 100644 --- a/examples/widgets/touch/fingerpaint/scribblearea.cpp +++ b/examples/widgets/touch/fingerpaint/scribblearea.cpp @@ -170,7 +170,7 @@ void ScribbleArea::resizeImage(QImage *image, const QSize &newSize) //! [21] void ScribbleArea::print() { -#if QT_CONFIG(printdialog) +#if defined(QT_PRINTSUPPORT_LIB) && QT_CONFIG(printdialog) QPrinter printer(QPrinter::HighResolution); QPrintDialog printDialog(&printer, this); |