Debugger/StartDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
53 @keyparam autoContinue flag indicating, that the debugger should not stop at 53 @keyparam autoContinue flag indicating, that the debugger should not stop at
54 the first executable line (boolean) 54 the first executable line (boolean)
55 @keyparam autoFork flag indicating the automatic fork mode (boolean) 55 @keyparam autoFork flag indicating the automatic fork mode (boolean)
56 @keyparam forkChild flag indicating to debug the child after forking (boolean) 56 @keyparam forkChild flag indicating to debug the child after forking (boolean)
57 """ 57 """
58 QDialog.__init__(self, parent) 58 super().__init__(parent)
59 self.setModal(True) 59 self.setModal(True)
60 60
61 self.type = type 61 self.type = type
62 if type == 0: 62 if type == 0:
63 from .Ui_StartDebugDialog import Ui_StartDebugDialog 63 from .Ui_StartDebugDialog import Ui_StartDebugDialog

eric ide

mercurial