]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected typo.
authorRobert Roebling <robert@roebling.de>
Fri, 26 Jan 2001 18:35:23 +0000 (18:35 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 26 Jan 2001 18:35:23 +0000 (18:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index a24e2609342447e03e6064aeace2b44857e716b6..b6cf7ea36d7433e6516d78e2d9c608f3cb03c819 100644 (file)
@@ -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.