summaryrefslogtreecommitdiffstats
path: root/src/imports/audioengine
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2016-08-26 11:58:48 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2016-08-26 11:55:12 +0000
commit29232a2bc207fb7dc44532f64bbe35d9181340c6 (patch)
tree4dcbc1a34e267bcf1f7e1996b7b7bb5d17032829 /src/imports/audioengine
parentcc12446728d00161116d6e1823e161440415d2d5 (diff)
Improve robustness of QML plugin loadingv5.8.0-alpha1
Use a variable that expands to the latest plugin version instead of hard-coding the string. Change-Id: I3bdbee161e4a3b59127dc4f00a0c9ce9386b67c2 Reviewed-by: Yoann Lopes <yoann.lopes@qt.io>
Diffstat (limited to 'src/imports/audioengine')
-rw-r--r--src/imports/audioengine/audioengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/audioengine/audioengine.cpp b/src/imports/audioengine/audioengine.cpp
index 8eb2dea33..a132af49a 100644
--- a/src/imports/audioengine/audioengine.cpp
+++ b/src/imports/audioengine/audioengine.cpp
@@ -63,7 +63,7 @@ QT_BEGIN_NAMESPACE
class QAudioEngineDeclarativeModule : public QQmlExtensionPlugin
{
Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface/1.0")
+ Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid)
public:
QAudioEngineDeclarativeModule(QObject *parent = 0) : QQmlExtensionPlugin(parent) { initResources(); }