239 self.logTree.clear() |
239 self.logTree.clear() |
240 self.__started = True |
240 self.__started = True |
241 self.__getReflogEntries() |
241 self.__getReflogEntries() |
242 |
242 |
243 @pyqtSlot(int, QProcess.ExitStatus) |
243 @pyqtSlot(int, QProcess.ExitStatus) |
244 def __procFinished(self, exitCode, exitStatus): |
244 def __procFinished(self, _exitCode, _exitStatus): |
245 """ |
245 """ |
246 Private slot connected to the finished signal. |
246 Private slot connected to the finished signal. |
247 |
247 |
248 @param exitCode exit code of the process |
248 @param _exitCode exit code of the process (unused) |
249 @type int |
249 @type int |
250 @param exitStatus exit status of the process |
250 @param _exitStatus exit status of the process (unused) |
251 @type QProcess.ExitStatus |
251 @type QProcess.ExitStatus |
252 """ |
252 """ |
253 self.__processBuffer() |
253 self.__processBuffer() |
254 self.__finish() |
254 self.__finish() |
255 |
255 |