X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/584ad2a32fec156c6049145d7ece9a33213aea28..0f30d8e39e7f896fc3767d086fe747efc1696d3b:/src/gtk/checklst.cpp?ds=sidebyside diff --git a/src/gtk/checklst.cpp b/src/gtk/checklst.cpp index 45bc4adc20..95dbf3d2a8 100644 --- a/src/gtk/checklst.cpp +++ b/src/gtk/checklst.cpp @@ -7,10 +7,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "checklst.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,6 +15,12 @@ #if wxUSE_CHECKLISTBOX #include "wx/checklst.h" + +// FIXME: We use GtkList to implement wxListBox +#ifdef GTK_DISABLE_DEPRECATED +#undef GTK_DISABLE_DEPRECATED +#endif + #include "wx/gtk/private.h" #include <gdk/gdk.h> @@ -38,7 +40,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, @@ -97,7 +99,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; }