107 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
107 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
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 def __procFinished(self, exitCode, exitStatus): |
113 def __procFinished(self, exitCode, exitStatus): |
113 """ |
114 """ |
114 Private slot connected to the finished signal. |
115 Private slot connected to the finished signal. |
115 |
116 |
116 @param exitCode exit code of the process |
117 @param exitCode exit code of the process |