projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
use C++ compiler for va_copy test, at least under IRIX the C99 C compiler has it...
[wxWidgets.git]
/
src
/
common
/
timerimpl.cpp
diff --git
a/src/common/timerimpl.cpp
b/src/common/timerimpl.cpp
index d952af816f79d9d2d44e46745f4cacc33b7bc140..3f94268d218ef9f88d6a81870df78c398ab2a0f5 100644
(file)
--- a/
src/common/timerimpl.cpp
+++ b/
src/common/timerimpl.cpp
@@
-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);
}