36 @param condHistory the list of conditionals history (list of strings) |
36 @param condHistory the list of conditionals history (list of strings) |
37 @param parent the parent of this dialog |
37 @param parent the parent of this dialog |
38 @param name the widget name of this dialog |
38 @param name the widget name of this dialog |
39 @param modal flag indicating a modal dialog |
39 @param modal flag indicating a modal dialog |
40 """ |
40 """ |
41 QDialog.__init__(self, parent) |
41 super().__init__(parent) |
42 self.setupUi(self) |
42 self.setupUi(self) |
43 if name: |
43 if name: |
44 self.setObjectName(name) |
44 self.setObjectName(name) |
45 self.setModal(modal) |
45 self.setModal(modal) |
46 |
46 |