Changed to non conflicting overload.

This commit is contained in:
Matthew Parlane 2012-12-24 00:00:45 +13:00
parent a8ddc3e069
commit f865450b5a
2 changed files with 4 additions and 4 deletions

View File

@ -139,7 +139,7 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
if (DSPCore_GetState() == DSPCORE_STEPPING) if (DSPCore_GetState() == DSPCORE_STEPPING)
{ {
DSPCore_Step(); DSPCore_Step();
Refresh(); Update();
} }
break; break;
@ -155,10 +155,10 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
void Host_RefreshDSPDebuggerWindow() void Host_RefreshDSPDebuggerWindow()
{ {
if (m_DebuggerFrame) if (m_DebuggerFrame)
m_DebuggerFrame->Refresh(); m_DebuggerFrame->Update();
} }
void DSPDebuggerLLE::Refresh() void DSPDebuggerLLE::Update()
{ {
#if defined __WXGTK__ #if defined __WXGTK__
if (!wxIsMainThread()) if (!wxIsMainThread())

View File

@ -50,7 +50,7 @@ public:
DSPDebuggerLLE(wxWindow *parent, wxWindowID id = wxID_ANY); DSPDebuggerLLE(wxWindow *parent, wxWindowID id = wxID_ANY);
virtual ~DSPDebuggerLLE(); virtual ~DSPDebuggerLLE();
virtual void Refresh(); virtual void Update();
private: private:
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();