298 @return flag indicating the state of the call trace function |
298 @return flag indicating the state of the call trace function |
299 @rtype bool |
299 @rtype bool |
300 """ |
300 """ |
301 return self.__callTraceEnabled |
301 return self.__callTraceEnabled |
302 |
302 |
303 @pyqtSlot(int, str, bool, str) |
303 @pyqtSlot(str, int, str, bool, str) |
304 def __clientExit(self, status, message, quiet, debuggerId): |
304 def __clientExit(self, program, status, message, quiet, debuggerId): |
305 """ |
305 """ |
306 Private slot to handle a debug client terminating. |
306 Private slot to handle a debug client terminating. |
307 |
307 |
|
308 @param program name of the exited program |
|
309 @type str |
308 @param status exit code of the debugged program |
310 @param status exit code of the debugged program |
309 @type int |
311 @type int |
310 @param message exit message of the debugged program |
312 @param message exit message of the debugged program |
311 @type str |
313 @type str |
312 @param quiet flag indicating to suppress exit info display |
314 @param quiet flag indicating to suppress exit info display |