From 245a995389fe9522b9af3815cf38150315640916 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Tue, 31 Dec 2019 01:11:50 +0900 Subject: [PATCH] Plugin template: use _iid macro instead of "org.qt-project..." Change-Id: Ib3a10681f65ee5317cd2813deae2322a81aa75c6 Reviewed-by: Eike Ziller --- share/qtcreator/templates/wizards/projects/cpplibrary/lib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/templates/wizards/projects/cpplibrary/lib.h b/share/qtcreator/templates/wizards/projects/cpplibrary/lib.h index ae2c90a3131..636d79e1c29 100644 --- a/share/qtcreator/templates/wizards/projects/cpplibrary/lib.h +++ b/share/qtcreator/templates/wizards/projects/cpplibrary/lib.h @@ -30,7 +30,7 @@ public: class %{CN} : public %{BaseClassName} { Q_OBJECT - Q_PLUGIN_METADATA(IID "org.qt-project.Qt.%{PluginInterface}" FILE "%{PluginJsonFile}") + Q_PLUGIN_METADATA(IID %{PluginInterface}_iid FILE "%{PluginJsonFile}") public: explicit %{CN}(QObject *parent = nullptr);