diff --git a/debuggers/gdb/debugsession.h b/debuggers/gdb/debugsession.h --- a/debuggers/gdb/debugsession.h +++ b/debuggers/gdb/debugsession.h @@ -290,16 +290,15 @@ /**When program stops and all commands from queue are executed and this variable is true, program state shown to the user is updated.*/ bool state_reload_needed; - - QTime commandExecutionTime; - /**True if program has stopped and all stuff like breakpoints is being updated.*/ bool stateReloadInProgress_; + /**True if running crashes*/ + bool m_isCrashed; + + QTime commandExecutionTime; ///Exit code of the last inferior(in format: exit normally, with code "number" e.t.c) QString m_inferiorExitCode; - - bool m_isCrashed; }; }