summaryrefslogtreecommitdiffstats
path: root/src/widgets/styles/qstyleoption.h
diff options
context:
space:
mode:
authorStephan Binner <stephan.binner@basyskom.com>2017-07-09 11:04:38 +0200
committerStephan Binner <stephan.binner@basyskom.com>2017-07-11 02:52:25 +0000
commit3835194d340f8756d2ac7a5f9ae2a3519cb891b9 (patch)
tree63fa52aabac01d835340b94a9ac8c146ac6fc110 /src/widgets/styles/qstyleoption.h
parent3906043f05d2ffccede47f845561cca95548ac5a (diff)
Convert features.rubberband to QT_[REQUIRE_]CONFIG
Change-Id: I6d634bafa6d26c1e78069fddd412e6de24f5775c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'src/widgets/styles/qstyleoption.h')
-rw-r--r--src/widgets/styles/qstyleoption.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/widgets/styles/qstyleoption.h b/src/widgets/styles/qstyleoption.h
index 0e76d53eea..a3ed35c762 100644
--- a/src/widgets/styles/qstyleoption.h
+++ b/src/widgets/styles/qstyleoption.h
@@ -49,7 +49,9 @@
#include <QtWidgets/qstyle.h>
#include <QtWidgets/qtabbar.h>
#include <QtWidgets/qtabwidget.h>
+#if QT_CONFIG(rubberband)
#include <QtWidgets/qrubberband.h>
+#endif
#include <QtWidgets/qframe.h>
#ifndef QT_NO_ITEMVIEWS
# include <QtCore/qabstractitemmodel.h>
@@ -467,7 +469,7 @@ protected:
typedef Q_DECL_DEPRECATED QStyleOptionToolBox QStyleOptionToolBoxV2;
-#ifndef QT_NO_RUBBERBAND
+#if QT_CONFIG(rubberband)
class Q_WIDGETS_EXPORT QStyleOptionRubberBand : public QStyleOption
{
public:
@@ -483,7 +485,7 @@ public:
protected:
QStyleOptionRubberBand(int version);
};
-#endif // QT_NO_RUBBERBAND
+#endif // QT_CONFIG(rubberband)
// -------------------------- Complex style options -------------------------------
class Q_WIDGETS_EXPORT QStyleOptionComplex : public QStyleOption