160 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
160 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
161 self.close() |
161 self.close() |
162 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
162 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
163 self.__finish() |
163 self.__finish() |
164 |
164 |
|
165 @pyqtSlot(int, QProcess.ExitStatus) |
165 def __procFinished(self, exitCode, exitStatus): |
166 def __procFinished(self, exitCode, exitStatus): |
166 """ |
167 """ |
167 Private slot connected to the finished signal. |
168 Private slot connected to the finished signal. |
168 |
169 |
169 @param exitCode exit code of the process (integer) |
170 @param exitCode exit code of the process (integer) |