From 49c64104c0750857858504b512955d9cc31e5c42 Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Sun, 5 May 2013 01:55:41 +0200 Subject: update the rest of the watchlets --- qorgwatchlet/qorgwatchlet.cpp | 6 +++--- qorgwatchlet/qorgwatchlet.h | 2 +- qorgwatchlet/qorgwatchletplugin.cpp | 4 ++-- qorgwatchlet/qorgwatchletplugin.h | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'qorgwatchlet') diff --git a/qorgwatchlet/qorgwatchlet.cpp b/qorgwatchlet/qorgwatchlet.cpp index 3d042fb..5911a9b 100644 --- a/qorgwatchlet/qorgwatchlet.cpp +++ b/qorgwatchlet/qorgwatchlet.cpp @@ -4,8 +4,8 @@ using namespace sowatch; -QOrgWatchlet::QOrgWatchlet(WatchServer* server) : - DeclarativeWatchlet(server, "com.javispedro.sowatch.qorg") +QOrgWatchlet::QOrgWatchlet(Watch* watch) : + DeclarativeWatchlet(watch, "com.javispedro.sowatch.qorg") { - setSource(QUrl(SOWATCH_QML_DIR "/qorgwatchlet/" + server->watch()->model() + ".qml")); + setSource(QUrl(SOWATCH_QML_DIR "/qorgwatchlet/" + watch->model() + ".qml")); } diff --git a/qorgwatchlet/qorgwatchlet.h b/qorgwatchlet/qorgwatchlet.h index 1c0f28e..517c4b3 100644 --- a/qorgwatchlet/qorgwatchlet.h +++ b/qorgwatchlet/qorgwatchlet.h @@ -10,7 +10,7 @@ class QOrgWatchlet : public DeclarativeWatchlet { Q_OBJECT public: - explicit QOrgWatchlet(WatchServer* server); + explicit QOrgWatchlet(Watch* watch); }; } diff --git a/qorgwatchlet/qorgwatchletplugin.cpp b/qorgwatchlet/qorgwatchletplugin.cpp index 4b7bb47..8416f0f 100644 --- a/qorgwatchlet/qorgwatchletplugin.cpp +++ b/qorgwatchlet/qorgwatchletplugin.cpp @@ -33,11 +33,11 @@ WatchletPluginInterface::WatchletInfo QOrgWatchletPlugin::describeWatchlet(const return info; } -Watchlet* QOrgWatchletPlugin::getWatchlet(const QString &id, ConfigKey *config, WatchServer *server) +Watchlet* QOrgWatchletPlugin::getWatchlet(const QString &id, ConfigKey *config, Watch *watch) { Q_UNUSED(config); if (id != "com.javispedro.sowatch.qorg") return 0; - return new QOrgWatchlet(server); + return new QOrgWatchlet(watch); } Q_EXPORT_PLUGIN2(qmsgwatchlet, QOrgWatchletPlugin) diff --git a/qorgwatchlet/qorgwatchletplugin.h b/qorgwatchlet/qorgwatchletplugin.h index dddbce2..9f4d3d5 100644 --- a/qorgwatchlet/qorgwatchletplugin.h +++ b/qorgwatchlet/qorgwatchletplugin.h @@ -17,7 +17,7 @@ public: QStringList watchlets(); WatchletInfo describeWatchlet(const QString &id); - Watchlet* getWatchlet(const QString &id, ConfigKey *config, WatchServer *server); + Watchlet* getWatchlet(const QString &id, ConfigKey *config, Watch *watch); }; } -- cgit v1.2.3