153 self.close() |
153 self.close() |
154 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
154 elif button == self.buttonBox.button(QDialogButtonBox.StandardButton.Cancel): |
155 self.__finish() |
155 self.__finish() |
156 |
156 |
157 @pyqtSlot(int, QProcess.ExitStatus) |
157 @pyqtSlot(int, QProcess.ExitStatus) |
158 def __procFinished(self, exitCode, exitStatus): |
158 def __procFinished(self, _exitCode, _exitStatus): |
159 """ |
159 """ |
160 Private slot connected to the finished signal. |
160 Private slot connected to the finished signal. |
161 |
161 |
162 @param exitCode exit code of the process |
162 @param _exitCode exit code of the process (unused) |
163 @type int |
163 @type int |
164 @param exitStatus exit status of the process |
164 @param _exitStatus exit status of the process (unused) |
165 @type QProcess.ExitStatus |
165 @type QProcess.ExitStatus |
166 """ |
166 """ |
167 self.__finish() |
167 self.__finish() |
168 |
168 |
169 def __resizeColumns(self): |
169 def __resizeColumns(self): |