19 """ |
22 """ |
20 Constructor |
23 Constructor |
21 |
24 |
22 @param parent reference to the parent widget (QWidget) |
25 @param parent reference to the parent widget (QWidget) |
23 """ |
26 """ |
24 super().__init__(parent) |
27 super(IeCommentDialog, self).__init__(parent) |
25 self.setupUi(self) |
28 self.setupUi(self) |
26 |
29 |
27 for condStr, condData in [("==", ""), ("<=", " lte"), ("<", " lt"), |
30 for condStr, condData in [("==", ""), ("<=", " lte"), ("<", " lt"), |
28 (">", " gt"), (">=", " gte")]: |
31 (">", " gt"), (">=", " gte")]: |
29 self.conditionalComboBox.addItem(condStr, condData) |
32 self.conditionalComboBox.addItem(condStr, condData) |