]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/checklst.cpp
Committing in .
[wxWidgets.git] / src / gtk / checklst.cpp
index 234fba1b12303a4541f67f3238555ee7abaf0ed3..e3eb5b9e7903dead959030490a2e3733bbc9fefd 100644 (file)
@@ -34,7 +34,7 @@ wxCheckListBox::wxCheckListBox() : wxListBox()
 wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
                                const wxPoint& pos,
                                const wxSize& size,
-                               int nStrings, 
+                               int nStrings,
                                const wxString *choices,
                                long style,
                                const wxValidator& validator,
@@ -93,7 +93,7 @@ void wxCheckListBox::Check( int index, bool check )
 
         str.SetChar( 1, check ? wxCHECKLBOX_CHECKED : wxCHECKLBOX_UNCHECKED );
 
-        gtk_label_set( label, wxGTK_CONV( str ) );
+        gtk_label_set_text( label, wxGTK_CONV( str ) );
 
         return;
     }