]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/checklst.cpp
Move wxColourData and wxFontData into separate files.
[wxWidgets.git] / src / gtk1 / checklst.cpp
index 9ca0fc0b7a5552d837bd2919e0be69ca5e1091e4..bb84a1816d2b04fc229c170976e74af2aa1a0529 100644 (file)
@@ -22,8 +22,6 @@
 // wxCheckListBox
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox,wxListBox)
-
 wxCheckListBox::wxCheckListBox() : wxListBox()
 {
     m_hasCheckBoxes = true;
@@ -55,7 +53,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 +72,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") );