summaryrefslogtreecommitdiffstats
path: root/examples/sensors/grue/plugin/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sensors/grue/plugin/main.cpp')
-rw-r--r--examples/sensors/grue/plugin/main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/sensors/grue/plugin/main.cpp b/examples/sensors/grue/plugin/main.cpp
index 713b12ec..36aec298 100644
--- a/examples/sensors/grue/plugin/main.cpp
+++ b/examples/sensors/grue/plugin/main.cpp
@@ -48,7 +48,8 @@
class GrueSensorPlugin : public QObject, public QSensorPluginInterface, public QSensorChangesInterface, public QSensorBackendFactory
{
Q_OBJECT
- Q_INTERFACES(QSensorPluginInterface:QFactoryInterface QSensorChangesInterface)
+ Q_PLUGIN_METADATA(IID "com.nokia.Qt.QSensorPluginInterface/1.0" FILE "plugin.json")
+ Q_INTERFACES(QSensorPluginInterface QSensorChangesInterface)
public:
void registerSensors()
{
@@ -74,10 +75,7 @@ public:
return 0;
}
- QStringList keys() const { return QStringList() << "grue";}
};
-Q_EXPORT_PLUGIN2(libsensors_grueplugin, GrueSensorPlugin)
-
#include "main.moc"