Debugger/ExceptionsFilterDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
23 23
24 @param excList list of exceptions to be edited (list of strings) 24 @param excList list of exceptions to be edited (list of strings)
25 @param ignore flag indicating the ignore exceptions mode (boolean) 25 @param ignore flag indicating the ignore exceptions mode (boolean)
26 @param parent the parent widget (QWidget) 26 @param parent the parent widget (QWidget)
27 """ 27 """
28 QDialog.__init__(self, parent) 28 super().__init__(parent)
29 self.setupUi(self) 29 self.setupUi(self)
30 self.setModal(True) 30 self.setModal(True)
31 31
32 self.exceptionList.addItems(excList) 32 self.exceptionList.addItems(excList)
33 33

eric ide

mercurial