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:
@@ -122,8 +122,8 @@ void wxBitmapComboBox::GTKCreateComboBoxWidget()
|
||||
else
|
||||
{
|
||||
m_widget = gtk_combo_box_entry_new_with_model( GTK_TREE_MODEL(store), m_stringCellIndex );
|
||||
m_entry = GTK_ENTRY( GTK_BIN(m_widget)->child );
|
||||
gtk_entry_set_editable( m_entry, TRUE );
|
||||
m_entry = GTK_ENTRY(gtk_bin_get_child(GTK_BIN(m_widget)));
|
||||
gtk_editable_set_editable(GTK_EDITABLE(m_entry), true);
|
||||
}
|
||||
g_object_ref(m_widget);
|
||||
|
||||
|
Reference in New Issue
Block a user