aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmleasing
diff options
context:
space:
mode:
authorDonald Carr <donald.carr@nokia.com>2012-04-17 05:23:21 +0000
committerQt by Nokia <qt-info@nokia.com>2012-04-18 21:39:59 +0200
commitfe0a7b716633dd35df8ecc987ad1031b60aafca4 (patch)
tree0baaeb764b53aaf65e1d1121ac2978bdc1e539a6 /tools/qmleasing
parent092aba4d3e752a61a795dd7923da3a622ac43ef0 (diff)
Enabled widget free compilation of QtQuick
There is no hard dependency of QtQuick on QWidget. This change makes the minor adjustments required to remove the build dependency altogether. This patch follows the path of least resistance bypassing any elements with a dependency on the legacy QWidget functionality. Change-Id: Ie3f47d3b4f60a1460dbb5d76a494a2c329469cc0 Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'tools/qmleasing')
-rw-r--r--tools/qmleasing/main.cpp4
-rw-r--r--tools/qmleasing/qmleasing.pro2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/qmleasing/main.cpp b/tools/qmleasing/main.cpp
index 59daa0e664..a2b15108eb 100644
--- a/tools/qmleasing/main.cpp
+++ b/tools/qmleasing/main.cpp
@@ -41,7 +41,7 @@
#include <QPainter>
#include <QtQuick/QQuickView>
-#include <QApplication>
+#include <QGuiApplication>
#include <QEasingCurve>
#include <QtQuick/QQuickPaintedItem>
@@ -102,7 +102,7 @@ void EasingPlot::paint(QPainter *painter)
int main(int argc, char ** argv)
{
- QApplication app(argc, argv);
+ QGuiApplication app(argc, argv);
qmlRegisterType<EasingPlot>("EasingPlot", 1, 0, "EasingPlot");
diff --git a/tools/qmleasing/qmleasing.pro b/tools/qmleasing/qmleasing.pro
index 488ec5748a..b43071c4ed 100644
--- a/tools/qmleasing/qmleasing.pro
+++ b/tools/qmleasing/qmleasing.pro
@@ -1,4 +1,4 @@
-QT += qml quick widgets
+QT += qml quick
CONFIG -= app_bundle
SOURCES += main.cpp