From: Mart Raudsepp Date: Tue, 4 Apr 2006 18:56:39 +0000 (+0000) Subject: gdk_window_get_colormap -> gdk_drawable_get_colormap X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/08f600190c7365bc19bbf330de4ede7331257f98 gdk_window_get_colormap -> gdk_drawable_get_colormap git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/listbox.cpp b/src/gtk/listbox.cpp index f3c5f07d2e..02a7a5d88f 100644 --- a/src/gtk/listbox.cpp +++ b/src/gtk/listbox.cpp @@ -1054,7 +1054,7 @@ void wxListBox::DoApplyWidgetStyle(GtkRcStyle *style) GdkWindow *window = gtk_tree_view_get_bin_window(m_treeview); if (window) { - m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); + m_backgroundColour.CalcPixel( gdk_drawable_get_colormap( window ) ); gdk_window_set_background( window, m_backgroundColour.GetColor() ); gdk_window_clear( window ); }