From f0f8421cef956c8794915f0dcd99067edb36c99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 21 Aug 2015 13:40:20 +0200 Subject: [PATCH] [qpa] Use QPlatformIntegrationFactoryInterface_iid for Q_PLUGIN_METADATA Makes it work with both Qt 5.4 and Qt 5.5. --- plugins/qpa/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/qpa/main.cpp b/plugins/qpa/main.cpp index 970d71f9da..36df4a8c86 100644 --- a/plugins/qpa/main.cpp +++ b/plugins/qpa/main.cpp @@ -25,7 +25,7 @@ along with this program. If not, see . class KWinIntegrationPlugin : public QPlatformIntegrationPlugin { Q_OBJECT - Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.2" FILE "kwin.json") + Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE "kwin.json") public: QPlatformIntegration *create(const QString &system, const QStringList ¶mList) override; };