summaryrefslogtreecommitdiff
path: root/nekowatchlet/nekowatchletplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nekowatchlet/nekowatchletplugin.cpp')
-rw-r--r--nekowatchlet/nekowatchletplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nekowatchlet/nekowatchletplugin.cpp b/nekowatchlet/nekowatchletplugin.cpp
index c891530..aee7923 100644
--- a/nekowatchlet/nekowatchletplugin.cpp
+++ b/nekowatchlet/nekowatchletplugin.cpp
@@ -28,11 +28,11 @@ WatchletPluginInterface::WatchletInfo NekoWatchletPlugin::describeWatchlet(const
return info;
}
-Watchlet* NekoWatchletPlugin::getWatchlet(const QString& driver, ConfigKey *settings, WatchServer *server)
+Watchlet* NekoWatchletPlugin::getWatchlet(const QString& driver, ConfigKey *settings, Watch *watch)
{
Q_UNUSED(driver);
Q_UNUSED(settings);
- return new NekoWatchlet(server);
+ return new NekoWatchlet(watch);
}
Q_EXPORT_PLUGIN2(notificationswatchlet, NekoWatchletPlugin)