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:
@@ -334,7 +334,7 @@ void wxChoice::GTKEnableEvents()
|
||||
|
||||
GdkWindow *wxChoice::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
|
||||
{
|
||||
return m_widget->window;
|
||||
return gtk_widget_get_window(m_widget);
|
||||
}
|
||||
|
||||
// Notice that this method shouldn't be necessary, because GTK calculates
|
||||
@@ -371,7 +371,7 @@ wxSize wxChoice::DoGetBestSize() const
|
||||
void wxChoice::DoApplyWidgetStyle(GtkRcStyle *style)
|
||||
{
|
||||
gtk_widget_modify_style(m_widget, style);
|
||||
gtk_widget_modify_style(GTK_BIN(m_widget)->child, style);
|
||||
gtk_widget_modify_style(gtk_bin_get_child(GTK_BIN(m_widget)), style);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user