206 Private slot to refresh the status display. |
206 Private slot to refresh the status display. |
207 """ |
207 """ |
208 self.start(self.__args, recursive=self.__recursive) |
208 self.start(self.__args, recursive=self.__recursive) |
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 if self.lastPath is None: |
220 if self.lastPath is None: |
221 self.__generateItem("", "None", "") |
221 self.__generateItem("", "None", "") |
222 |
222 |