From b4b95d07f8b012cf29c0546f425ea3b78f2ad502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Sat, 27 Feb 2010 04:10:17 +0100 Subject: [PATCH] Deprecate widget flag: GTK_WIDGET_PARENT_SENSITIVE Use gtk_widget_get_sensitive() on the parent widget instead. https://bugzilla.gnome.org/show_bug.cgi?id=69872 --- gtk/gtkwidget.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkwidget.h b/gtk/gtkwidget.h index 0a22a98c5a..6e0a96c598 100644 --- a/gtk/gtkwidget.h +++ b/gtk/gtkwidget.h @@ -267,13 +267,17 @@ typedef enum #define GTK_WIDGET_SENSITIVE(wid) ((GTK_WIDGET_FLAGS (wid) & GTK_SENSITIVE) != 0) #endif +#ifndef GTK_DISABLE_DEPRECATED /** * GTK_WIDGET_PARENT_SENSITIVE: * @wid: a #GtkWidget. * * Evaluates to %TRUE if the #GTK_PARENT_SENSITIVE flag has be set on the widget. + * + * Deprecated: 2.20: Use gtk_widget_get_sensitive() on the parent widget instead. */ #define GTK_WIDGET_PARENT_SENSITIVE(wid) ((GTK_WIDGET_FLAGS (wid) & GTK_PARENT_SENSITIVE) != 0) +#endif #ifndef GTK_DISABLE_DEPRECATED /**