summaryrefslogtreecommitdiff
path: root/harmaccuweather
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2012-08-08 16:44:07 +0200
committerJavier S. Pedro <maemo@javispedro.com>2012-08-08 16:44:07 +0200
commit081aa7b760986092377be7f62cac3bdee7400874 (patch)
tree37b42e1bd1492a5ed64ae445182ff151cc524a56 /harmaccuweather
parent93f3acd128d6b349efe14e97b12c2703ca4f81f3 (diff)
downloadsowatch-081aa7b760986092377be7f62cac3bdee7400874.tar.gz
sowatch-081aa7b760986092377be7f62cac3bdee7400874.zip
more cleanup fixes
Diffstat (limited to 'harmaccuweather')
-rw-r--r--harmaccuweather/harmaccuplugin.cpp2
-rw-r--r--harmaccuweather/harmaccuplugin.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/harmaccuweather/harmaccuplugin.cpp b/harmaccuweather/harmaccuplugin.cpp
index 25821c4..7414187 100644
--- a/harmaccuweather/harmaccuplugin.cpp
+++ b/harmaccuweather/harmaccuplugin.cpp
@@ -19,7 +19,7 @@ QStringList HarmAccuPlugin::providers()
return providers;
}
-NotificationProvider* HarmAccuPlugin::getProvider(const QString& id, QSettings& settings, QObject *parent)
+NotificationProvider* HarmAccuPlugin::getProvider(const QString& id, ConfigKey *settings, QObject *parent)
{
Q_UNUSED(settings);
if (id != "harmaccu") return 0;
diff --git a/harmaccuweather/harmaccuplugin.h b/harmaccuweather/harmaccuplugin.h
index 16198ad..d27c796 100644
--- a/harmaccuweather/harmaccuplugin.h
+++ b/harmaccuweather/harmaccuplugin.h
@@ -16,7 +16,7 @@ public:
~HarmAccuPlugin();
QStringList providers();
- NotificationProvider* getProvider(const QString& driver, QSettings& settings, QObject *parent = 0);
+ NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0);
};
}