ProjectDjangoTagsMenu/IeCommentDialog.py

changeset 52
c264091162a2
parent 51
29c461f7bea0
child 55
5390ef66c327
equal deleted inserted replaced
51:29c461f7bea0 52:c264091162a2
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)

eric ide

mercurial