From 8418486bd263af29baba89e261eacbfefc2832b4 Mon Sep 17 00:00:00 2001 From: Yves Marcoz Date: Wed, 1 Feb 2012 19:21:32 -0800 Subject: [PATCH] psa: fix dbus call to open automatic update settings --- FeedingIt-Sync/pysrc/feedingit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FeedingIt-Sync/pysrc/feedingit.py b/FeedingIt-Sync/pysrc/feedingit.py index 370a488..f2791ad 100644 --- a/FeedingIt-Sync/pysrc/feedingit.py +++ b/FeedingIt-Sync/pysrc/feedingit.py @@ -244,11 +244,11 @@ class Controller(QtCore.QObject): config.setFontSize(value) config.saveConfig() - @QtCore.Slot(str, str) + @QtCore.Slot() def openSettings(self): bus = dbus.SessionBus() settingService = bus.get_object('com.nokia.DuiControlPanel', '/') - setting = shareService.get_dbus_method('appletPage', 'com.nokia.DuiControlPanelIf') + setting = settingService.get_dbus_method('appletPage', 'com.nokia.DuiControlPanelIf') setting(["FeedingIt"],) @QtCore.Slot(str, str) -- 1.7.9.5