Fixed a compliation error, event args should not be const.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-02-10 23:40:59 +00:00
parent b0803032d3
commit 864db5de61
3 changed files with 3 additions and 3 deletions

View File

@@ -823,7 +823,7 @@ void wxListBox::MacScrollTo( int n )
// TODO implement scrolling
}
void wxListBox::OnSize( const wxSizeEvent &event)
void wxListBox::OnSize( wxSizeEvent &event)
{
Point pt;