diff options
Diffstat (limited to 'meegohandsetnotification')
-rw-r--r-- | meegohandsetnotification/meegohandsetplugin.cpp | 2 | ||||
-rw-r--r-- | meegohandsetnotification/meegohandsetplugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meegohandsetnotification/meegohandsetplugin.cpp b/meegohandsetnotification/meegohandsetplugin.cpp index bac41aa..0f50575 100644 --- a/meegohandsetnotification/meegohandsetplugin.cpp +++ b/meegohandsetnotification/meegohandsetplugin.cpp @@ -18,7 +18,7 @@ QStringList MeegoHandsetPlugin::providers() return providers; } -NotificationProvider* MeegoHandsetPlugin::getProvider(const QString& driver, QSettings& settings, QObject *parent) +NotificationProvider* MeegoHandsetPlugin::getProvider(const QString& driver, ConfigKey* settings, QObject *parent) { Q_UNUSED(driver); Q_UNUSED(settings); diff --git a/meegohandsetnotification/meegohandsetplugin.h b/meegohandsetnotification/meegohandsetplugin.h index 616fb9b..4d826dc 100644 --- a/meegohandsetnotification/meegohandsetplugin.h +++ b/meegohandsetnotification/meegohandsetplugin.h @@ -16,7 +16,7 @@ public: ~MeegoHandsetPlugin(); QStringList providers(); - NotificationProvider* getProvider(const QString& driver, QSettings& settings, QObject *parent = 0); + NotificationProvider* getProvider(const QString& driver, ConfigKey *settings, QObject *parent = 0); }; } |