[POS-commit] r3244 - stoq/trunk/stoq/gui

Evandro Vale Miquelito evandro at async.com.br
Thu Apr 6 12:22:37 BRT 2006


Author: evandro
Date: Thu Apr  6 12:22:37 2006
New Revision: 3244

Modified:
   stoq/trunk/stoq/gui/config.py

Log:
Using the right wizard step type


Modified: stoq/trunk/stoq/gui/config.py
==============================================================================
--- stoq/trunk/stoq/gui/config.py	(original)
+++ stoq/trunk/stoq/gui/config.py	Thu Apr  6 12:22:37 2006
@@ -29,7 +29,7 @@
 from kiwi.python import Settable
 from kiwi.ui.dialogs import error
 
-from stoqlib.gui.base.wizards import BaseWizardStep, BaseWizard
+from stoqlib.gui.base.wizards import WizardEditorStep, BaseWizard
 from stoqlib.database import DatabaseSettings
 
 
@@ -41,7 +41,7 @@
 #
 
 
-class DatabaseSettingsStep(BaseWizardStep):
+class DatabaseSettingsStep(WizardEditorStep):
     gladefile = 'DatabaseSettingsStep'
     model_type = DatabaseSettings
     proxy_widgets = ('address',
@@ -60,7 +60,7 @@
     def __init__(self, wizard, model):
         self.wizard_model = model
         self.authentication_items = None
-        BaseWizardStep.__init__(self, None, wizard)
+        WizardEditorStep.__init__(self, None, wizard)
         self.title_label.set_size('xx-large')
         self.title_label.set_bold(True)
         self.title_label.set_color('blue')


More information about the POS-commit mailing list