Debugger/EditBreakpointDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
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

eric ide

mercurial