Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py

changeset 2407
b98cc8ee1142
parent 2302
f29e9405c851
child 2525
8b507a9a2d40
child 2752
5d556f9040e3
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())

eric ide

mercurial