diff options
author | Florian Müllner <fmuellner@gnome.org> | 2015-10-23 18:39:01 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-11-03 07:44:17 -0500 |
commit | 9a29a2768b81395eb21db5bd8762c419b0e30a8f (patch) | |
tree | 1e45c83590b9127296dfc50f782ab4aaad4386a8 /gtk/gtkbutton.h | |
parent | ebdf5f581d4e93c577f4cdb2e47e30e393e61157 (diff) | |
download | gtk+-9a29a2768b81395eb21db5bd8762c419b0e30a8f.tar.gz |
Deprecate widget-specific :focus-on-click properties
The differences between the existing properties and the newly added
GtkWidget:focus-on-click property are minimal (different owner_type
in GParamSpec), so it is extremely unlikely that dropping the former
would break anything.
https://bugzilla.gnome.org/show_bug.cgi?id=757269
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index 99b19ba3aa..5f01b04c45 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -134,10 +134,10 @@ void gtk_button_set_use_stock (GtkButton *button, gboolean use_stock); GDK_DEPRECATED_IN_3_10 gboolean gtk_button_get_use_stock (GtkButton *button); -GDK_AVAILABLE_IN_ALL +GDK_DEPRECATED_IN_3_20_FOR(gtk_widget_set_focus_on_click) void gtk_button_set_focus_on_click (GtkButton *button, gboolean focus_on_click); -GDK_AVAILABLE_IN_ALL +GDK_DEPRECATED_IN_3_20_FOR(gtk_widget_get_focus_on_click) gboolean gtk_button_get_focus_on_click (GtkButton *button); GDK_DEPRECATED_IN_3_14 void gtk_button_set_alignment (GtkButton *button, |