Deprecate widget flag: GTK_WIDGET_VISIBLE
Use gtk_widget_get_visible() instead https://bugzilla.gnome.org/show_bug.cgi?id=69872
This commit is contained in:
@ -79,7 +79,7 @@ struct _GtkTooltipClass
|
||||
GObjectClass parent_class;
|
||||
};
|
||||
|
||||
#define GTK_TOOLTIP_VISIBLE(tooltip) ((tooltip)->current_window && GTK_WIDGET_VISIBLE ((tooltip)->current_window))
|
||||
#define GTK_TOOLTIP_VISIBLE(tooltip) ((tooltip)->current_window && gtk_widget_get_visible (GTK_WIDGET((tooltip)->current_window)))
|
||||
|
||||
|
||||
static void gtk_tooltip_class_init (GtkTooltipClass *klass);
|
||||
|
||||
Reference in New Issue
Block a user