diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-02-27 07:10:59 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-02-27 07:11:43 -0500 |
commit | 2c25bd85b8690eb0ca6b023122dc130d57c0ca8d (patch) | |
tree | a0a1e65a7230ddfd9a2345a1e8c5b8928a7b090f /gtk/gtklockbutton.h | |
parent | 98f3468172004901df6e8bf507e4ec1b0fdac42d (diff) | |
download | gtk+-2c25bd85b8690eb0ca6b023122dc130d57c0ca8d.tar.gz |
gtk: Use versioned deprecations
This patch changes all uses of GDK_DEPRECATED(_FOR) in gtk headers
by the versioned variants, GDK_DEPRECATED_IN_3_x(_FOR). At the same
time, we add GDK_AVAILABLE_IN_3_x annotations for all API additions
in 3.2 and 3.4.
Diffstat (limited to 'gtk/gtklockbutton.h')
-rw-r--r-- | gtk/gtklockbutton.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/gtklockbutton.h b/gtk/gtklockbutton.h index 10635c9080..b210c971df 100644 --- a/gtk/gtklockbutton.h +++ b/gtk/gtklockbutton.h @@ -58,9 +58,13 @@ struct _GtkLockButtonClass void (*reserved7) (void); }; +GDK_AVAILABLE_IN_3_2 GType gtk_lock_button_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_3_2 GtkWidget *gtk_lock_button_new (GPermission *permission); +GDK_AVAILABLE_IN_3_2 GPermission *gtk_lock_button_get_permission (GtkLockButton *button); +GDK_AVAILABLE_IN_3_2 void gtk_lock_button_set_permission (GtkLockButton *button, GPermission *permission); |