X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/caf6e6dee8d177844bb633786ec8c05eba6972bc..30d6c59b297f98ebda1d6c14e56f289bd3b02799:/src/gtk1/checklst.cpp?ds=sidebyside diff --git a/src/gtk1/checklst.cpp b/src/gtk1/checklst.cpp index 9ca0fc0b7a..cb46643608 100644 --- a/src/gtk1/checklst.cpp +++ b/src/gtk1/checklst.cpp @@ -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") );