]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/checklst.cpp
removing codewarrior support
[wxWidgets.git] / src / gtk / checklst.cpp
index 43ca4f09e327c0076672bbe9ab144918e75e8f6a..fef7b3c61cc3099ecd56889ad1f51eae289a8015 100644 (file)
@@ -46,9 +46,7 @@ static void gtk_checklist_toggled(GtkCellRendererToggle * WXUNUSED(renderer),
 // wxCheckListBox
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox,wxListBox)
-
-wxCheckListBox::wxCheckListBox() : wxListBox()
+wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
 {
     m_hasCheckBoxes = true;
 }
@@ -123,7 +121,7 @@ bool wxCheckListBox::IsChecked(unsigned int index) const
                              0, //column
                              &value);
 
-    return g_value_get_boolean(&value) == TRUE ? true : false;
+    return g_value_get_boolean(&value) != 0;
 }
 
 void wxCheckListBox::Check(unsigned int index, bool check)