From 258e5c7427015e93a233c4d1a5d3cd164abbe57c Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Fri, 26 Jan 2001 18:35:23 +0000 Subject: [PATCH] Corrected typo. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/event.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/wx/event.h b/include/wx/event.h index a24e260934..b6cf7ea36d 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1456,15 +1456,15 @@ struct WXDLLEXPORT wxEventTableEntry { wxEventTableEntry( const int &eventType, int id, - int m_lastId, + int lastId, wxObjectEventFunction fn, wxObject *data ) : - m_eventType(eventType), - m_id(id), - m_lastId(id), - m_fn(fn), - m_callbackUserData(data) + m_eventType(eventType) { + m_id = id; + m_lastId = lastId; + m_fn = fn; + m_callbackUserData = data; } // For some reason, this can't be wxEventType, or VC++ complains. -- 2.45.2