summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/src/Main.cpp
diff options
context:
space:
mode:
authorfires.gc <fires.gc@gmail.com>2008-07-17 20:08:01 +0000
committerfires.gc <fires.gc@gmail.com>2008-07-17 20:08:01 +0000
commitfa6bd5d2e28892a5ce63b8b4f3e7ce18e8a200b6 (patch)
tree3249d5a78ba4d0fc7f1b5894f20fe8621a46e59f /Source/Core/DolphinWX/src/Main.cpp
parentd23af1a15e07a66bf88352facd527bed6df3828c (diff)
added first iteration of breakpoint view for the debugger
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@21 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/src/Main.cpp')
-rw-r--r--Source/Core/DolphinWX/src/Main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/src/Main.cpp b/Source/Core/DolphinWX/src/Main.cpp
index 4d9c18cdbe..774e9144a0 100644
--- a/Source/Core/DolphinWX/src/Main.cpp
+++ b/Source/Core/DolphinWX/src/Main.cpp
@@ -188,6 +188,17 @@ void Host_UpdateMainFrame()
}
}
+void Host_UpdateBreakPointView()
+{
+ wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATEBREAKPOINTS);
+ wxPostEvent(main_frame, event);
+
+ if (code_frame)
+ {
+ wxPostEvent(code_frame, event);
+ }
+}
+
void Host_UpdateMemoryView()
{}