avoid deprecated functions and direct struct access
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -131,7 +131,7 @@ bool wxCheckBox::Create(wxWindow *parent,
|
||||
else
|
||||
{
|
||||
m_widgetCheckbox = gtk_check_button_new_with_label("");
|
||||
m_widgetLabel = GTK_BIN(m_widgetCheckbox)->child;
|
||||
m_widgetLabel = gtk_bin_get_child(GTK_BIN(m_widgetCheckbox));
|
||||
m_widget = m_widgetCheckbox;
|
||||
}
|
||||
g_object_ref(m_widget);
|
||||
|
Reference in New Issue
Block a user