summaryrefslogtreecommitdiffstats
path: root/src/widgets/dialogs
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@qt.io>2017-01-20 14:41:46 +0100
committerPaul Olav Tvete <paul.tvete@qt.io>2017-01-25 10:33:27 +0000
commitd82e23e775c74f9993f9b8599c928e56abde6808 (patch)
tree3b5108d3a760928ba82ff3e092842a88c34cc630 /src/widgets/dialogs
parent447ca99191a8659c3b4aa57847f674a49a18f41c (diff)
Make sure features are defined before testing them
Include the file defining the feature before testing whether the feature exists. Also use the new feature macro to make sure this bug doesn't happen again. Change-Id: I204836fee59b143a7ce7d256a7aed223c4d0ceb1 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/widgets/dialogs')
-rw-r--r--src/widgets/dialogs/qfontdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/dialogs/qfontdialog.cpp b/src/widgets/dialogs/qfontdialog.cpp
index 3a833e85c0..955e93a26f 100644
--- a/src/widgets/dialogs/qfontdialog.cpp
+++ b/src/widgets/dialogs/qfontdialog.cpp
@@ -38,10 +38,10 @@
****************************************************************************/
#include "qwindowdefs.h"
+#include "qfontdialog.h"
-#ifndef QT_NO_FONTDIALOG
+#if QT_CONFIG(fontdialog)
-#include "qfontdialog.h"
#include "qfontdialog_p.h"
#include <qapplication.h>
@@ -1051,4 +1051,4 @@ QT_END_NAMESPACE
#include "qfontdialog.moc"
#include "moc_qfontdialog.cpp"
-#endif // QT_NO_FONTDIALOG
+#endif // QT_CONFIG(fontdialog)