X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6bc3b8e9680e8aa3d50ae4bb41dad22c6dd3ce1b..6929fe3af8c307d7ff46e73a88edbedc39731d09:/src/mac/classic/toplevel.cpp diff --git a/src/mac/classic/toplevel.cpp b/src/mac/classic/toplevel.cpp index efa241a3d1..013c9fbdb2 100644 --- a/src/mac/classic/toplevel.cpp +++ b/src/mac/classic/toplevel.cpp @@ -211,7 +211,7 @@ static pascal OSStatus KeyboardEventHandler( EventHandlerCallRef handler , Event event.m_x = point.h; event.m_y = point.v; - event.m_timeStamp = when; + event.SetTimestamp(when); wxWindow* focus = wxWindow::FindFocus() ; event.SetEventObject(focus); @@ -971,7 +971,7 @@ void wxTopLevelWindowMac::MacFireMouseEvent( event.m_x += m_x; event.m_y += m_y; - event.m_timeStamp = timestamp; + event.SetTimestamp(timestamp); event.SetEventObject(this); if ( wxTheApp->s_captureWindow ) { @@ -1051,7 +1051,7 @@ void wxTopLevelWindowMac::MacActivate( long timestamp , bool inIsActivating ) s_macDeactivateWindow=NULL; MacDelayedDeactivation(timestamp); wxActivateEvent event(wxEVT_ACTIVATE, inIsActivating , m_windowId); - event.m_timeStamp = timestamp ; + event.SetTimestamp(timestamp); event.SetEventObject(this); GetEventHandler()->ProcessEvent(event);