396 |
396 |
397 self.__resizeColumns() |
397 self.__resizeColumns() |
398 self.__resort() |
398 self.__resort() |
399 |
399 |
400 @pyqtSlot(int, QProcess.ExitStatus) |
400 @pyqtSlot(int, QProcess.ExitStatus) |
401 def __procFinished(self, exitCode, exitStatus): |
401 def __procFinished(self, _exitCode, _exitStatus): |
402 """ |
402 """ |
403 Private slot connected to the finished signal. |
403 Private slot connected to the finished signal. |
404 |
404 |
405 @param exitCode exit code of the process |
405 @param _exitCode exit code of the process (unused) |
406 @type int |
406 @type int |
407 @param exitStatus exit status of the process |
407 @param _exitStatus exit status of the process (unused) |
408 @type QProcess.ExitStatus |
408 @type QProcess.ExitStatus |
409 """ |
409 """ |
410 self.__finish() |
410 self.__finish() |
411 |
411 |
412 def __readStdout(self): |
412 def __readStdout(self): |