Debugger/EditWatchpointDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
24 (expression, temporary flag, enabled flag, ignore count, special condition) 24 (expression, temporary flag, enabled flag, ignore count, special condition)
25 @param parent the parent of this dialog 25 @param parent the parent of this dialog
26 @param name the widget name of this dialog 26 @param name the widget name of this dialog
27 @param modal flag indicating a modal dialog 27 @param modal flag indicating a modal dialog
28 """ 28 """
29 QDialog.__init__(self, parent) 29 super().__init__(parent)
30 self.setupUi(self) 30 self.setupUi(self)
31 if name: 31 if name:
32 self.setObjectName(name) 32 self.setObjectName(name)
33 self.setModal(modal) 33 self.setModal(modal)
34 34

eric ide

mercurial