summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2008-07-20 15:12:12 +0000
committerhrydgard <hrydgard@gmail.com>2008-07-20 15:12:12 +0000
commiteaaea3da946831e3c11af76bb5ca3c53a03c34f8 (patch)
treed9677dbc5ca1e2ed443a84d65fdfbc29d4d3f313 /Source/Core/DebuggerWX/src
parent7765b3f556c8fa0a077344a9e6350482fc9c4a41 (diff)
Attempt at auto update SVN revision in title bar - let's see if it works for everyone, sorry Sonic, you'll have to find a linux solution (see svnrev_template.h). Also adds some smash bros cheats.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@34 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src')
-rw-r--r--Source/Core/DebuggerWX/src/BreakpointView.cpp4
-rw-r--r--Source/Core/DebuggerWX/src/CodeWindow.cpp4
-rw-r--r--Source/Core/DebuggerWX/src/CodeWindow.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DebuggerWX/src/BreakpointView.cpp b/Source/Core/DebuggerWX/src/BreakpointView.cpp
index ecd2392ec6..ebe9169263 100644
--- a/Source/Core/DebuggerWX/src/BreakpointView.cpp
+++ b/Source/Core/DebuggerWX/src/BreakpointView.cpp
@@ -79,8 +79,8 @@ CBreakPointView::Update()
Refresh();
}
- void CBreakPointView::DeleteCurrentSelection()
- {
+void CBreakPointView::DeleteCurrentSelection()
+{
int Item = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
if (Item >= 0)
{
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.cpp b/Source/Core/DebuggerWX/src/CodeWindow.cpp
index c2d2935423..54f6f454d8 100644
--- a/Source/Core/DebuggerWX/src/CodeWindow.cpp
+++ b/Source/Core/DebuggerWX/src/CodeWindow.cpp
@@ -76,7 +76,7 @@ BEGIN_EVENT_TABLE(CCodeWindow, wxFrame)
EVT_BUTTON(IDM_SETPC, CCodeWindow::OnCodeStep)
EVT_BUTTON(IDM_GOTOPC, CCodeWindow::OnCodeStep)
EVT_TEXT(IDM_ADDRBOX, CCodeWindow::OnAddrBoxChange)
- EVT_LISTBOX(IDM_SYMBOLLIST, CCodeWindow::OnSymolListChange)
+ EVT_LISTBOX(IDM_SYMBOLLIST, CCodeWindow::OnSymbolListChange)
EVT_LISTBOX(IDM_CALLSTACKLIST, CCodeWindow::OnCallstackListChange)
EVT_HOST_COMMAND(wxID_ANY, CCodeWindow::OnHostMessage)
EVT_MENU(IDM_LOGWINDOW, CCodeWindow::OnToggleLogWindow)
@@ -411,7 +411,7 @@ void CCodeWindow::UpdateButtonStates()
}
-void CCodeWindow::OnSymolListChange(wxCommandEvent& event)
+void CCodeWindow::OnSymbolListChange(wxCommandEvent& event)
{
int index = symbols->GetSelection();
Debugger::CSymbol* pSymbol = static_cast<Debugger::CSymbol*>(symbols->GetClientData(index));
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.h b/Source/Core/DebuggerWX/src/CodeWindow.h
index 95db88ece6..0ad945abf1 100644
--- a/Source/Core/DebuggerWX/src/CodeWindow.h
+++ b/Source/Core/DebuggerWX/src/CodeWindow.h
@@ -73,7 +73,7 @@ class CCodeWindow
wxTextCtrl* addrbox;
DECLARE_EVENT_TABLE()
- void OnSymolListChange(wxCommandEvent& event);
+ void OnSymbolListChange(wxCommandEvent& event);
void OnCallstackListChange(wxCommandEvent& event);
void OnCodeStep(wxCommandEvent& event);
void OnAddrBoxChange(wxCommandEvent& event);