mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
Merge pull request #1541 from lioncash/log
LogWindow: Fix the timer event bindings
This commit is contained in:
commit
00f4217382
@ -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…
x
Reference in New Issue
Block a user