Debugger : fixed Breakpoint "toolbar", re-enabled a couple of host messages for dialog updates and other stuff, breakpoints in memory view are now memory checks instead of PPC breakpoints

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4337 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
sl1nk3.s 2009-09-27 21:28:09 +00:00
parent cad887c51d
commit 56b8b6493c
11 changed files with 186 additions and 140 deletions

View file

@ -24,7 +24,7 @@
#include "DebuggerUIUtil.h"
#include "DebugInterface.h"
// #include "Host.h"
#include "Host.h"
#include "CodeView.h"
#include "SymbolDB.h"
// #include "JitWindow.h"
@ -125,7 +125,7 @@ void CCodeView::OnMouseDown(wxMouseEvent& event)
{
debugger->toggleBreakpoint(YToAddress(y));
redraw();
// Host_UpdateBreakPointView();
Host_UpdateBreakPointView();
}
event.Skip(true);
@ -311,7 +311,7 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
case IDM_ADDFUNCTION:
{
symbol_db->AddFunction(selection);
// Host_NotifyMapLoaded();
Host_NotifyMapLoaded();
}
break;
@ -323,9 +323,9 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
wxString::FromAscii(symbol->name.c_str()));
if (input_symbol.ShowModal() == wxID_OK) {
symbol->name = input_symbol.GetValue().mb_str();
redraw(); // Redraw to show the renamed symbol
}
// redraw();
// Host_NotifyMapLoaded();
Host_NotifyMapLoaded();
}
}
break;