24 (expression, temporary flag, enabled flag, ignore count, special condition) |
26 (expression, temporary flag, enabled flag, ignore count, special condition) |
25 @param parent the parent of this dialog |
27 @param parent the parent of this dialog |
26 @param name the widget name of this dialog |
28 @param name the widget name of this dialog |
27 @param modal flag indicating a modal dialog |
29 @param modal flag indicating a modal dialog |
28 """ |
30 """ |
29 super().__init__(parent) |
31 super(EditWatchpointDialog, self).__init__(parent) |
30 self.setupUi(self) |
32 self.setupUi(self) |
31 if name: |
33 if name: |
32 self.setObjectName(name) |
34 self.setObjectName(name) |
33 self.setModal(modal) |
35 self.setModal(modal) |
34 |
36 |