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 |