made wxCommandEvent::GetInt() return int, not long (patch 1473771)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-04-21 00:53:59 +00:00
parent 74b720793f
commit fd587c7a5e

View File

@@ -546,7 +546,7 @@ public:
long GetExtraLong() const { return m_extraLong; }
void SetInt(int i) { m_commandInt = i; }
long GetInt() const { return m_commandInt; }
int GetInt() const { return m_commandInt; }
virtual wxEvent *Clone() const { return new wxCommandEvent(*this); }