Moved message code where it belongs.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31217 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-06-23 22:29:15 +00:00
parent 57c3ecadb8
commit e951f678c2
3 changed files with 4 additions and 5 deletions
+1
View File
@@ -17,6 +17,7 @@
#include "debug_utils.h"
#include "MessageCodes.h"
#include "TeamDebugger.h"
+3 -1
View File
@@ -19,7 +19,9 @@ enum {
MSG_THREAD_CPU_STATE_CHANGED = 'tcsc',
MSG_THREAD_STACK_TRACE_CHANGED = 'tstc',
MSG_STACK_FRAME_SOURCE_CODE_CHANGED = 'sfsc',
MSG_USER_BREAKPOINT_CHANGED = 'ubrc'
MSG_USER_BREAKPOINT_CHANGED = 'ubrc',
MSG_DEBUGGER_QUIT_REQUESTED = 'dbqt'
};
-4
View File
@@ -19,10 +19,6 @@
class DebuggerInterface;
class TeamDebugModel;
enum {
MSG_DEBUGGER_QUIT_REQUESTED = 'dbqt'
};
class TeamDebugger : private BLooper, private TeamWindow::Listener,
private JobListener, private Team::Listener {