196 """ |
196 """ |
197 Private slot to refresh the status display. |
197 Private slot to refresh the status display. |
198 """ |
198 """ |
199 self.start(self.__args, recursive=self.__recursive) |
199 self.start(self.__args, recursive=self.__recursive) |
200 |
200 |
|
201 @pyqtSlot(int, QProcess.ExitStatus) |
201 def __procFinished(self, exitCode, exitStatus): |
202 def __procFinished(self, exitCode, exitStatus): |
202 """ |
203 """ |
203 Private slot connected to the finished signal. |
204 Private slot connected to the finished signal. |
204 |
205 |
205 @param exitCode exit code of the process (integer) |
206 @param exitCode exit code of the process (integer) |