diff options
author | Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com> | 2015-09-09 11:05:50 +0200 |
---|---|---|
committer | Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com> | 2015-09-09 10:23:16 +0000 |
commit | f3872ba9435457f3415bbe1fe09b9b9b7555ca57 (patch) | |
tree | fdf6b5cf2b4a30c227409b4a57f6b484ed423284 | |
parent | 1c6a510c16b35c937af202f517604620b4a97ff0 (diff) | |
download | qtquickcontrols-f3872ba9435457f3415bbe1fe09b9b9b7555ca57.tar.gz |
Flat style: set correct classname to enable static linking
The classname in qmldir needs to match the name of the c++
class that represents the plugin. Otherwise qmlimportscanner
will be confused.
Task-number: QTBUG-47489
Change-Id: Iac56803127cad7bf072f29c611936df16dcf32d4
Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
-rw-r--r-- | src/extras/Styles/Flat/qmldir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extras/Styles/Flat/qmldir b/src/extras/Styles/Flat/qmldir index 2b6390a4..74a5a967 100644 --- a/src/extras/Styles/Flat/qmldir +++ b/src/extras/Styles/Flat/qmldir @@ -1,3 +1,3 @@ module QtQuick.Controls.Styles.Flat plugin qtquickextrasflatplugin -classname QtQuickExtrasFlatPlugin +classname QtQuickExtrasStylesPlugin |