147 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
147 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
148 self.close() |
148 self.close() |
149 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
149 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
150 self.__finish() |
150 self.__finish() |
151 |
151 |
|
152 @pyqtSlot(int, QProcess.ExitStatus) |
152 def __procFinished(self, exitCode, exitStatus): |
153 def __procFinished(self, exitCode, exitStatus): |
153 """ |
154 """ |
154 Private slot connected to the finished signal. |
155 Private slot connected to the finished signal. |
155 |
156 |
156 @param exitCode exit code of the process (integer) |
157 @param exitCode exit code of the process (integer) |