39 """ |
39 """ |
40 Constructor |
40 Constructor |
41 |
41 |
42 @param parent parent widget (QWidget) |
42 @param parent parent widget (QWidget) |
43 """ |
43 """ |
44 super(PyRegExpWizardCharactersDialog, self).__init__(parent) |
44 super().__init__(parent) |
45 self.setupUi(self) |
45 self.setupUi(self) |
46 |
46 |
47 self.comboItems = [] |
47 self.comboItems = [] |
48 self.singleComboItems = [] # these are in addition to the above |
48 self.singleComboItems = [] # these are in addition to the above |
49 self.comboItems.append(self.tr("Normal character")) |
49 self.comboItems.append(self.tr("Normal character")) |