replaced all int/size_t indices in wxControlWithItems API with unsigned int (committing on behalf of ABX)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38319 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -55,7 +55,7 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
|
||||
style, validator, name );
|
||||
}
|
||||
|
||||
bool wxCheckListBox::IsChecked( int index ) const
|
||||
bool wxCheckListBox::IsChecked(unsigned int index) const
|
||||
{
|
||||
wxCHECK_MSG( m_list != NULL, false, wxT("invalid checklistbox") );
|
||||
|
||||
@@ -74,7 +74,7 @@ bool wxCheckListBox::IsChecked( int index ) const
|
||||
return false;
|
||||
}
|
||||
|
||||
void wxCheckListBox::Check( int index, bool check )
|
||||
void wxCheckListBox::Check(unsigned int index, bool check )
|
||||
{
|
||||
wxCHECK_RET( m_list != NULL, wxT("invalid checklistbox") );
|
||||
|
||||
|
Reference in New Issue
Block a user