207 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
207 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
208 self.__finish() |
208 self.__finish() |
209 elif button == self.refreshButton: |
209 elif button == self.refreshButton: |
210 self.on_refreshButton_clicked() |
210 self.on_refreshButton_clicked() |
211 |
211 |
|
212 @pyqtSlot(int, QProcess.ExitStatus) |
212 def __procFinished(self, exitCode, exitStatus): |
213 def __procFinished(self, exitCode, exitStatus): |
213 """ |
214 """ |
214 Private slot connected to the finished signal. |
215 Private slot connected to the finished signal. |
215 |
216 |
216 @param exitCode exit code of the process (integer) |
217 @param exitCode exit code of the process (integer) |