108 self.close() |
108 self.close() |
109 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
109 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
110 self.__cancel() |
110 self.__cancel() |
111 |
111 |
112 @pyqtSlot(int, QProcess.ExitStatus) |
112 @pyqtSlot(int, QProcess.ExitStatus) |
113 def __procFinished(self, exitCode, exitStatus): |
113 def __procFinished(self, _exitCode, _exitStatus): |
114 """ |
114 """ |
115 Private slot connected to the finished signal. |
115 Private slot connected to the finished signal. |
116 |
116 |
117 @param exitCode exit code of the process |
117 @param _exitCode exit code of the process (unused) |
118 @type int |
118 @type int |
119 @param exitStatus exit status of the process |
119 @param _exitStatus exit status of the process (unused) |
120 @type QProcess.ExitStatus |
120 @type QProcess.ExitStatus |
121 """ |
121 """ |
122 self.__finish() |
122 self.__finish() |
123 |
123 |
124 def startProcess(self, cmd, args, showArgs=True): |
124 def startProcess(self, cmd, args, showArgs=True): |