diff -r 975af671146d -r b98cc8ee1142 Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py --- a/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Sun Feb 10 19:36:30 2013 +0100 +++ b/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py Sun Feb 10 19:46:21 2013 +0100 @@ -19,9 +19,6 @@ from .Ui_PyRegExpWizardDialog import Ui_PyRegExpWizardDialog -from .PyRegExpWizardRepeatDialog import PyRegExpWizardRepeatDialog -from .PyRegExpWizardCharactersDialog import PyRegExpWizardCharactersDialog - import UI.PixmapCache import Utilities @@ -250,6 +247,7 @@ """ Private slot to handle the repeat toolbutton. """ + from .PyRegExpWizardRepeatDialog import PyRegExpWizardRepeatDialog dlg = PyRegExpWizardRepeatDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getRepeat()) @@ -259,6 +257,7 @@ """ Private slot to handle the characters toolbutton. """ + from .PyRegExpWizardCharactersDialog import PyRegExpWizardCharactersDialog dlg = PyRegExpWizardCharactersDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getCharacters())