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:
@@ -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); }
|
||||
|
||||
|
Reference in New Issue
Block a user