GTK2: gtk_label_set -> gtk_label_set_text

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-02-03 22:58:26 +00:00
parent e343da37ac
commit a7c12d28e6
7 changed files with 8 additions and 8 deletions

View File

@@ -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;
}