From: Václav Slavík Date: Thu, 4 Nov 2004 23:57:19 +0000 (+0000) Subject: compilation fix for GTK+ 2.0 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/606ce80cc8348f7121cb126386887d2ba9c3e80e compilation fix for GTK+ 2.0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 1de5cf38e1..be1cfa845b 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -448,7 +448,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, else { m_widget = gtk_window_new(GTK_WINDOW_TOPLEVEL); -#ifdef __WXGTK20__ +#if GTK_CHECK_VERSION(2,1,0) if (style & wxFRAME_TOOL_WINDOW) gtk_window_set_type_hint(GTK_WINDOW(m_widget), GDK_WINDOW_TYPE_HINT_UTILITY); diff --git a/src/gtk1/toplevel.cpp b/src/gtk1/toplevel.cpp index 1de5cf38e1..be1cfa845b 100644 --- a/src/gtk1/toplevel.cpp +++ b/src/gtk1/toplevel.cpp @@ -448,7 +448,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, else { m_widget = gtk_window_new(GTK_WINDOW_TOPLEVEL); -#ifdef __WXGTK20__ +#if GTK_CHECK_VERSION(2,1,0) if (style & wxFRAME_TOOL_WINDOW) gtk_window_set_type_hint(GTK_WINDOW(m_widget), GDK_WINDOW_TYPE_HINT_UTILITY);