mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
LogWindow: Fix the timer event bindings
This commit is contained in:
parent
e789920340
commit
8f92059705
@ -49,12 +49,13 @@ CLogWindow::CLogWindow(CFrame *parent, wxWindowID id, const wxPoint& pos,
|
||||
, m_Log(nullptr), m_cmdline(nullptr), m_FontChoice(nullptr)
|
||||
{
|
||||
Bind(wxEVT_CLOSE_WINDOW, &CLogWindow::OnClose, this);
|
||||
Bind(wxEVT_TIMER, &CLogWindow::OnLogTimer, this);
|
||||
|
||||
m_LogManager = LogManager::GetInstance();
|
||||
|
||||
CreateGUIControls();
|
||||
|
||||
m_LogTimer = new wxTimer(this);
|
||||
m_LogTimer->Bind(wxEVT_TIMER, &CLogWindow::OnLogTimer, this);
|
||||
m_LogTimer->Start(UPDATETIME);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user