]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/checklst.cpp
Fix compilation with MinGW -std=c++11 option.
[wxWidgets.git] / src / gtk / checklst.cpp
index a75aebf608ef942e4e12dea3f0be8ebe25e4ac62..fef7b3c61cc3099ecd56889ad1f51eae289a8015 100644 (file)
@@ -46,7 +46,7 @@ static void gtk_checklist_toggled(GtkCellRendererToggle * WXUNUSED(renderer),
 // wxCheckListBox
 //-----------------------------------------------------------------------------
 
 // wxCheckListBox
 //-----------------------------------------------------------------------------
 
-wxCheckListBox::wxCheckListBox() : wxListBox()
+wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
 {
     m_hasCheckBoxes = true;
 }
 {
     m_hasCheckBoxes = true;
 }
@@ -121,7 +121,7 @@ bool wxCheckListBox::IsChecked(unsigned int index) const
                              0, //column
                              &value);
 
                              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)
 }
 
 void wxCheckListBox::Check(unsigned int index, bool check)