Fixing recursion
authorEd Page <eopage@byu.net>
Thu, 21 Apr 2011 01:54:15 +0000 (20:54 -0500)
committerEd Page <eopage@byu.net>
Thu, 21 Apr 2011 01:54:15 +0000 (20:54 -0500)
src/dialogs.py

index 97a0996..a81219e 100644 (file)
@@ -420,7 +420,7 @@ class AccountDialog(QtCore.QObject, qwrappers.WindowWrapper):
        @qt_compat.Slot()
        @qt_compat.Slot(bool)
        def _on_settings_apply(self, checked = False):
-               self._on_settings_apply(checked)
+               self.__on_settings_apply(checked)
 
        @misc_utils.log_exception(_moduleLogger)
        def __on_settings_apply(self, checked = False):