Skip to content

Commit

Permalink
Changed to non conflicting overload.
Browse files Browse the repository at this point in the history
  • Loading branch information
Parlane committed Dec 23, 2012
1 parent a8ddc3e commit f865450
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/Core/DolphinWX/Src/Debugger/DSPDebugWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
if (DSPCore_GetState() == DSPCORE_STEPPING)
{
DSPCore_Step();
Refresh();
Update();
}
break;

Expand All @@ -155,10 +155,10 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
void Host_RefreshDSPDebuggerWindow()
{
if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
m_DebuggerFrame->Update();
}

void DSPDebuggerLLE::Refresh()
void DSPDebuggerLLE::Update()
{
#if defined __WXGTK__
if (!wxIsMainThread())
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Src/Debugger/DSPDebugWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class DSPDebuggerLLE : public wxPanel
DSPDebuggerLLE(wxWindow *parent, wxWindowID id = wxID_ANY);
virtual ~DSPDebuggerLLE();

virtual void Refresh();
virtual void Update();

private:
DECLARE_EVENT_TABLE();
Expand Down

0 comments on commit f865450

Please sign in to comment.