PlatformComponentsPlugin: fix plugin iid to QQmlExtensionInterface

Summary: The Q_PLUGIN_METADATA IID should be the one of the implemented interface.

Reviewers: #plasma, apol

Reviewed By: apol

Subscribers: kde-frameworks-devel

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D21000
This commit is contained in:
Friedrich W. H. Kossebau 2019-05-03 18:51:22 +02:00
parent c8fe7bc5ac
commit 7f4e171ef7

View File

@ -27,7 +27,7 @@
class PlatformComponentsPlugin: public QQmlExtensionPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.kde.plasma.platformcomponents")
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
public:
PlatformComponentsPlugin(QObject *parent = nullptr)