From 5b008dd712dc781933629f19039587076094ed8a Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 22 Feb 2006 17:15:20 +0000 Subject: [PATCH] undef GTK_DISABLE_DEPRECATED for any gtk+ version, as it turns out we use GtkList in here too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/combobox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index fdb640143f..07d6d0a777 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -22,8 +22,8 @@ // We use GtkCombo which has been deprecated since GTK+ 2.3.0 // in favour of GtkComboBox for -#if defined(GTK_DISABLE_DEPRECATED) && GTK_CHECK_VERSION(2,3,0) +// We also use GtkList +#ifdef GTK_DISABLE_DEPRECATED #undef GTK_DISABLE_DEPRECATED #endif #include "wx/gtk/private.h" -- 2.45.2