diff -r 975af671146d -r b98cc8ee1142 Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py --- a/Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py Sun Feb 10 19:36:30 2013 +0100 +++ b/Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py Sun Feb 10 19:46:21 2013 +0100 @@ -18,9 +18,6 @@ from .Ui_QRegExpWizardDialog import Ui_QRegExpWizardWidget -from .QRegExpWizardRepeatDialog import QRegExpWizardRepeatDialog -from .QRegExpWizardCharactersDialog import QRegExpWizardCharactersDialog - import UI.PixmapCache import Utilities @@ -218,6 +215,7 @@ """ Private slot to handle the repeat toolbutton. """ + from .QRegExpWizardRepeatDialog import QRegExpWizardRepeatDialog dlg = QRegExpWizardRepeatDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getRepeat()) @@ -227,6 +225,7 @@ """ Private slot to handle the characters toolbutton. """ + from .QRegExpWizardCharactersDialog import QRegExpWizardCharactersDialog dlg = QRegExpWizardCharactersDialog( mode=QRegExpWizardCharactersDialog.RegExpMode, parent=self) if dlg.exec_() == QDialog.Accepted: @@ -237,6 +236,7 @@ """ Private slot to handle the wildcard characters toolbutton. """ + from .QRegExpWizardCharactersDialog import QRegExpWizardCharactersDialog dlg = QRegExpWizardCharactersDialog( mode=QRegExpWizardCharactersDialog.WildcardMode, parent=self) if dlg.exec_() == QDialog.Accepted: @@ -261,6 +261,7 @@ """ Private slot to handle the wildcard characters toolbutton. """ + from .QRegExpWizardCharactersDialog import QRegExpWizardCharactersDialog dlg = QRegExpWizardCharactersDialog( mode=QRegExpWizardCharactersDialog.W3CMode, parent=self) if dlg.exec_() == QDialog.Accepted: @@ -278,6 +279,7 @@ """ Private slot to handle the W3C repeat toolbutton. """ + from .QRegExpWizardRepeatDialog import QRegExpWizardRepeatDialog dlg = QRegExpWizardRepeatDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getRepeat())