diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-05-05 01:55:41 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-05-05 01:55:41 +0200 |
commit | 49c64104c0750857858504b512955d9cc31e5c42 (patch) | |
tree | 1a74e10cf42f0f08b1af64e8470825e8e1c8ea41 /nekowatchlet/nekowatchletplugin.cpp | |
parent | 24c7c2f6f1429103d922ef940c0e17a3d4778059 (diff) | |
download | sowatch-49c64104c0750857858504b512955d9cc31e5c42.tar.gz sowatch-49c64104c0750857858504b512955d9cc31e5c42.zip |
update the rest of the watchlets
Diffstat (limited to 'nekowatchlet/nekowatchletplugin.cpp')
-rw-r--r-- | nekowatchlet/nekowatchletplugin.cpp | 4 |
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) |