diff -r 092aa8fafa4e -r f6ccc31d6e72 Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py --- a/Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py Sat Jan 02 16:15:57 2010 +0000 +++ b/Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py Sat Jan 02 17:09:08 2010 +0000 @@ -33,7 +33,7 @@ Constructor @param parent parent widget (QWidget) - @param fromEric flag indicating a call from within eric4 + @param fromEric flag indicating a call from within eric5 """ QWidget.__init__(self,parent) self.setupUi(self) @@ -275,7 +275,7 @@ """ Private slot to copy the regexp string into the clipboard. - This slot is only available, if not called from within eric4. + This slot is only available, if not called from within eric5. """ escaped = self.regexpLineEdit.text() if escaped: @@ -484,7 +484,7 @@ Constructor @param parent parent widget (QWidget) - @param fromEric flag indicating a call from within eric4 + @param fromEric flag indicating a call from within eric5 """ QDialog.__init__(self, parent) self.setModal(fromEric) @@ -529,4 +529,4 @@ self.resize(size) self.connect(self.cw.buttonBox, SIGNAL("accepted()"), self.close) - self.connect(self.cw.buttonBox, SIGNAL("rejected()"), self.close) + self.connect(self.cw.buttonBox, SIGNAL("rejected()"), self.close) \ No newline at end of file