added wxTimerEvent::GetTimer()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-05-05 14:59:25 +00:00
parent 0bc58f9580
commit 2cd78b2a87
4 changed files with 18 additions and 10 deletions

View File

@@ -47,8 +47,7 @@ void wxTimerImpl::SetOwner(wxEvtHandler *owner, int timerid)
void wxTimerImpl::SendEvent()
{
wxTimerEvent event(m_idTimer, m_milli);
event.SetEventObject(m_owner);
wxTimerEvent event(*m_timer);
(void)m_owner->ProcessEvent(event);
}