summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/CodeWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/src/CodeWindow.h')
-rw-r--r--Source/Core/DebuggerWX/src/CodeWindow.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.h b/Source/Core/DebuggerWX/src/CodeWindow.h
index 46d840ad65..ff711633ac 100644
--- a/Source/Core/DebuggerWX/src/CodeWindow.h
+++ b/Source/Core/DebuggerWX/src/CodeWindow.h
@@ -29,6 +29,7 @@
class CRegisterWindow;
class CLogWindow;
+class CBreakPointWindow;
class CCodeWindow
: public wxFrame
@@ -54,6 +55,7 @@ class CCodeWindow
// sub dialogs
CLogWindow* m_logwindow;
CRegisterWindow* m_RegisterWindow;
+ CBreakPointWindow* m_BreakpointWindow;
CCodeView* codeview;
wxListBox* callstack;
@@ -75,6 +77,7 @@ class CCodeWindow
void OnAddrBoxChange(wxCommandEvent& event);
void OnToggleRegisterWindow(wxCommandEvent& event);
+ void OnToggleBreakPointWindow(wxCommandEvent& event);
void OnToggleLogWindow(wxCommandEvent& event);
void OnHostMessage(wxCommandEvent& event);