Call static functions directly

This commit is contained in:
Paul Cornett
2019-02-25 23:53:51 -08:00
parent 393d2c61a7
commit 0fc5413974
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ public:
return false;
}
m_source = loop->AddSourceForFD
m_source = wxEventLoopBase::AddSourceForFD
(
m_ifd,
m_handler,

View File

@@ -114,7 +114,7 @@ public:
}
// create source
m_source = loop->AddSourceForFD(m_kfd, m_handler, wxEVENT_SOURCE_INPUT);
m_source = wxEventLoopBase::AddSourceForFD(m_kfd, m_handler, wxEVENT_SOURCE_INPUT);
return m_source != NULL;
}