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:
@@ -149,7 +149,7 @@ protected:
|
|||||||
int MacGetSelections(wxArrayInt& aSelections) const ;
|
int MacGetSelections(wxArrayInt& aSelections) const ;
|
||||||
bool MacIsSelected( int n ) const ;
|
bool MacIsSelected( int n ) const ;
|
||||||
void MacScrollTo( int n ) ;
|
void MacScrollTo( int n ) ;
|
||||||
void OnSize( const wxSizeEvent &size ) ;
|
void OnSize( wxSizeEvent &size ) ;
|
||||||
void MacDoClick() ;
|
void MacDoClick() ;
|
||||||
void MacDoDoubleClick() ;
|
void MacDoDoubleClick() ;
|
||||||
|
|
||||||
|
@@ -823,7 +823,7 @@ void wxListBox::MacScrollTo( int n )
|
|||||||
// TODO implement scrolling
|
// TODO implement scrolling
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::OnSize( const wxSizeEvent &event)
|
void wxListBox::OnSize( wxSizeEvent &event)
|
||||||
{
|
{
|
||||||
Point pt;
|
Point pt;
|
||||||
|
|
||||||
|
@@ -823,7 +823,7 @@ void wxListBox::MacScrollTo( int n )
|
|||||||
// TODO implement scrolling
|
// TODO implement scrolling
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::OnSize( const wxSizeEvent &event)
|
void wxListBox::OnSize( wxSizeEvent &event)
|
||||||
{
|
{
|
||||||
Point pt;
|
Point pt;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user