206 |
206 |
207 self.logTree.clear() |
207 self.logTree.clear() |
208 self.__getLogEntries() |
208 self.__getLogEntries() |
209 |
209 |
210 @pyqtSlot(int, QProcess.ExitStatus) |
210 @pyqtSlot(int, QProcess.ExitStatus) |
211 def __procFinished(self, exitCode, exitStatus): |
211 def __procFinished(self, _exitCode, _exitStatus): |
212 """ |
212 """ |
213 Private slot connected to the finished signal. |
213 Private slot connected to the finished signal. |
214 |
214 |
215 @param exitCode exit code of the process |
215 @param _exitCode exit code of the process (unused) |
216 @type int |
216 @type int |
217 @param exitStatus exit status of the process |
217 @param _exitStatus exit status of the process (unused) |
218 @type QProcess.ExitStatus |
218 @type QProcess.ExitStatus |
219 """ |
219 """ |
220 self.__processBuffer() |
220 self.__processBuffer() |
221 self.__finish() |
221 self.__finish() |
222 |
222 |