Fix for broken wxGTK1 compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2011-04-06 08:47:45 +00:00
parent e042c3b582
commit 655e246b86

View File

@@ -43,7 +43,11 @@
#ifdef __WXGTK__
#include <gtk/gtk.h>
#include "wx/renderer.h"
#include "wx/gtk/private/gtk2-compat.h"
#if GTK_CHECK_VERSION(2,0,0)
#include "wx/gtk/private/gtk2-compat.h"
#else
#define gtk_widget_is_drawable GTK_WIDGET_DRAWABLE
#endif
#endif