diff options
author | Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> | 2015-05-18 09:33:35 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> | 2015-05-19 14:08:56 +0000 |
commit | 994cbd0de54f66abd6f10fe8fdfb36e2ef4f1350 (patch) | |
tree | e8fc6ac71e3790100fd0adf7f2bc345ebd448ec1 | |
parent | 79aff17bc604f126c507ca329dcdc42b34609886 (diff) | |
download | qtquick1-994cbd0de54f66abd6f10fe8fdfb36e2ef4f1350.tar.gz |
Turn the QDeclarativeView Qt Designer plugin into a uiplugin.
The plugin does not link to any Qt Designer classes, so,
uiplugin is sufficient.
Task-number: QTBUG-44724
Change-Id: Ibecdccd7080c0752d5605c33f2bbe4e9eb0a0e44
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Reviewed-by: Jarek Kobus <jaroslaw.kobus@theqtcompany.com>
-rw-r--r-- | src/plugins/qdeclarativeview/qdeclarativeview.pro | 2 | ||||
-rw-r--r-- | src/plugins/qdeclarativeview/qdeclarativeview_plugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qdeclarativeview/qdeclarativeview.pro b/src/plugins/qdeclarativeview/qdeclarativeview.pro index 8c3559c3..2c8fb918 100644 --- a/src/plugins/qdeclarativeview/qdeclarativeview.pro +++ b/src/plugins/qdeclarativeview/qdeclarativeview.pro @@ -1,5 +1,5 @@ TARGET = qdeclarativeview -QT += declarative widgets designer +QT += declarative widgets uiplugin PLUGIN_TYPE = designer PLUGIN_CLASS_NAME = QDeclarativeViewPlugin diff --git a/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h b/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h index 5af85879..82e2b36b 100644 --- a/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h +++ b/src/plugins/qdeclarativeview/qdeclarativeview_plugin.h @@ -34,7 +34,7 @@ #ifndef QDECLARATIVEVIEW_PLUGIN_H #define QDECLARATIVEVIEW_PLUGIN_H -#include <QtDesigner/QDesignerCustomWidgetInterface> +#include <QtUiPlugin/QDesignerCustomWidgetInterface> QT_BEGIN_NAMESPACE |