162 self.outputEdit.insertPlainText(self.tr("--- ERROR ---\n")) |
162 self.outputEdit.insertPlainText(self.tr("--- ERROR ---\n")) |
163 self.outputEdit.insertPlainText(out) |
163 self.outputEdit.insertPlainText(out) |
164 self.outputEdit.ensureCursorVisible() |
164 self.outputEdit.ensureCursorVisible() |
165 |
165 |
166 @pyqtSlot(int, QProcess.ExitStatus) |
166 @pyqtSlot(int, QProcess.ExitStatus) |
167 def __conversionFinished(self, exitCode, exitStatus): |
167 def __conversionFinished(self, _exitCode, _exitStatus): |
168 """ |
168 """ |
169 Private slot handling the end of the conversion process. |
169 Private slot handling the end of the conversion process. |
170 |
170 |
171 @param exitCode exit code of the process |
171 @param _exitCode exit code of the process (unused) |
172 @type int |
172 @type int |
173 @param exitStatus exit status of the process |
173 @param _exitStatus exit status of the process (unused) |
174 @type QProcess.ExitStatus |
174 @type QProcess.ExitStatus |
175 """ |
175 """ |
176 self.convertButton.setEnabled(True) |
176 self.convertButton.setEnabled(True) |