484 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
484 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
485 self.__finish() |
485 self.__finish() |
486 elif button == self.refreshButton: |
486 elif button == self.refreshButton: |
487 self.on_refreshButton_clicked() |
487 self.on_refreshButton_clicked() |
488 |
488 |
|
489 @pyqtSlot(int, QProcess.ExitStatus) |
489 def __procFinished(self, exitCode, exitStatus): |
490 def __procFinished(self, exitCode, exitStatus): |
490 """ |
491 """ |
491 Private slot connected to the finished signal. |
492 Private slot connected to the finished signal. |
492 |
493 |
493 @param exitCode exit code of the process (integer) |
494 @param exitCode exit code of the process (integer) |