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