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