-/////////////////////////////////////////////////////////////////////////////
+/* ///////////////////////////////////////////////////////////////////////////
// Name: wx_gtk.h
// Purpose:
// Author: Robert Roebling
// Id:
// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
// Licence: wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
+/////////////////////////////////////////////////////////////////////////// */
#include "wx/gtk/win_gtk.h"
+#include <gtk/gtkfeatures.h>
#ifdef __cplusplus
extern "C" {
static void gtk_myfixed_remove (GtkContainer *container,
GtkWidget *widget);
static void gtk_myfixed_foreach (GtkContainer *container,
+#if (GTK_MINOR_VERSION == 1)
+ gboolean include_internals,
+#endif
GtkCallback callback,
gpointer callback_data);
container_class->add = gtk_myfixed_add;
container_class->remove = gtk_myfixed_remove;
+#if (GTK_MINOR_VERSION == 1)
+ container_class->forall = gtk_myfixed_foreach;
+#else
container_class->foreach = gtk_myfixed_foreach;
+#endif
}
static void
static void
gtk_myfixed_foreach (GtkContainer *container,
+#if (GTK_MINOR_VERSION == 1)
+ gboolean include_internals,
+#endif
GtkCallback callback,
gpointer callback_data)
{