QmlDesigner: Compile with Qt 5 after removal of old styles.

Change-Id: I869da5a9af76fce01f411e608f95ecbd7ddda71a
Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>
This commit is contained in:
Friedemann Kleint
2012-10-23 09:23:55 +02:00
parent 86e544ce4c
commit 63cacc4534

View File

@@ -44,9 +44,12 @@
#include <QDebug>
#include <QApplication>
#include <QGraphicsOpacityEffect>
#if QT_VERSION >= 0x050000
# include <QFusionStyle>
#else
# include <QCleanlooksStyle>
# include <QPlastiqueStyle>
#endif
#include <QTextEdit>
@@ -61,11 +64,13 @@ class CleanLooksSingleton
private:
static CleanLooksSingleton *m_instance;
#ifdef Q_OS_MAC
#if QT_VERSION >= 0x050000
QFusionStyle m_style;
#elif defined(Q_OS_MAC)
QPlastiqueStyle m_style;
#else
QCleanlooksStyle m_style;
#endif //Q_OS_MAC
#endif
CleanLooksSingleton() {}
CleanLooksSingleton( const CleanLooksSingleton& );