From: Julian Smart Date: Fri, 26 Jan 2001 14:13:10 +0000 (+0000) Subject: Changed m_eventType to int X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/963e36f8527f9a6bcddd50a44f20f921a83692cc Changed m_eventType to int git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index b4fe042c4d..af2282d81c 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1455,7 +1455,7 @@ typedef void (wxObject::*wxObjectEventFunction)(wxEvent&); struct WXDLLEXPORT wxEventTableEntry { // For some reason, this can't be wxEventType, or VC++ complains. - const int &m_eventType; // main event type + int m_eventType; // main event type int m_id; // control/menu/toolbar id int m_lastId; // used for ranges of ids wxObjectEventFunction m_fn; // function to call: not wxEventFunction,