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