diff options
author | Jens Bache-Wiig <jens.bache-wiig@digia.com> | 2013-05-27 12:19:08 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-05-27 12:28:58 +0200 |
commit | 1ded235a13fc9bdb6a5d24ab385293a230cb7303 (patch) | |
tree | 094ba67708cc2e2022972fecde96d2489668f980 | |
parent | bcf132fb54b4b1c9ba3ade31c134a521b361ab62 (diff) | |
download | qtquickcontrols-1ded235a13fc9bdb6a5d24ab385293a230cb7303.tar.gz |
Rename generic plugin names
We should not use names as generic as "plugin.dll" and "private.dll".
This will cause a lot of confusion when deploying.
Task-number: QTBUG-31348
Change-Id: Iee18e4d0cd713b63ff1b99dc0db31123b90666ec
Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
-rw-r--r-- | src/controls/controls.pro | 2 | ||||
-rw-r--r-- | src/controls/qmldir | 2 | ||||
-rw-r--r-- | src/private/private.pro | 2 | ||||
-rw-r--r-- | src/private/qmldir | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/controls/controls.pro b/src/controls/controls.pro index 369329e1..928708c2 100644 --- a/src/controls/controls.pro +++ b/src/controls/controls.pro @@ -1,4 +1,4 @@ -TARGET = plugin +TARGET = qtquickcontrols TARGETPATH = QtQuick/Controls QT += qml quick gui-private core-private diff --git a/src/controls/qmldir b/src/controls/qmldir index 5a62f652..f593439f 100644 --- a/src/controls/qmldir +++ b/src/controls/qmldir @@ -1,5 +1,5 @@ module QtQuick.Controls -plugin plugin +plugin qtquickcontrols ApplicationWindow 1.0 ApplicationWindow.qml Button 1.0 Button.qml CheckBox 1.0 CheckBox.qml diff --git a/src/private/private.pro b/src/private/private.pro index 88ce0b04..9f892452 100644 --- a/src/private/private.pro +++ b/src/private/private.pro @@ -1,4 +1,4 @@ -TARGET = privateplugin +TARGET = qtquickcontrolsprivate TARGETPATH = QtQuick/Controls/Private QT += qml quick gui-private core-private diff --git a/src/private/qmldir b/src/private/qmldir index 2b61a762..d4b7fc46 100644 --- a/src/private/qmldir +++ b/src/private/qmldir @@ -1,5 +1,5 @@ module QtQuick.Controls.Private -plugin privateplugin +plugin qtquickcontrolsprivate AbstractCheckable 1.0 AbstractCheckable.qml Control 1.0 Control.qml FocusFrame 1.0 FocusFrame.qml |