15 |
15 |
16 class QRegExpWizardRepeatDialog(QDialog, Ui_QRegExpWizardRepeatDialog): |
16 class QRegExpWizardRepeatDialog(QDialog, Ui_QRegExpWizardRepeatDialog): |
17 """ |
17 """ |
18 Class implementing a dialog for entering repeat counts. |
18 Class implementing a dialog for entering repeat counts. |
19 """ |
19 """ |
20 def __init__(self,parent = None): |
20 def __init__(self, parent=None): |
21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param parent parent widget (QWidget) |
24 @param parent parent widget (QWidget) |
25 """ |
25 """ |
26 QDialog.__init__(self,parent) |
26 QDialog.__init__(self, parent) |
27 self.setupUi(self) |
27 self.setupUi(self) |
28 |
28 |
29 self.unlimitedButton.setChecked(True) |
29 self.unlimitedButton.setChecked(True) |
30 |
30 |
31 @pyqtSlot(int) |
31 @pyqtSlot(int) |