Corrected typo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2001-01-26 18:35:23 +00:00
parent 82a5f02c86
commit 258e5c7427

View 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.