]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed m_eventType to int
authorJulian Smart <julian@anthemion.co.uk>
Fri, 26 Jan 2001 14:13:10 +0000 (14:13 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 26 Jan 2001 14:13:10 +0000 (14:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9170 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index b4fe042c4d4c80e96605998e81baed7608b56142..af2282d81ca005d37f28e61b765d595c66d4032d 100644 (file)
@@ -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,