diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-10-12 18:03:03 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-10-12 18:07:28 -0400 |
commit | a5d4801f9e7934f25d6daa0e57be317d52b3439a (patch) | |
tree | 475feec778fffc3216783f57692a288528cf3faa /gdk-pixbuf/gdk-pixbuf-core.h | |
parent | 6136f4e8e79ad4501ec43166c27aaa7541585a04 (diff) | |
download | gdk-pixbuf-a5d4801f9e7934f25d6daa0e57be317d52b3439a.tar.gz |
Add deprecation attributes to deprecated functions
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-core.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-core.h b/gdk-pixbuf/gdk-pixbuf-core.h index b2fdc33fe..016310247 100644 --- a/gdk-pixbuf/gdk-pixbuf-core.h +++ b/gdk-pixbuf/gdk-pixbuf-core.h @@ -236,7 +236,9 @@ GType gdk_pixbuf_get_type (void) G_GNUC_CONST; /* Reference counting */ #ifndef GDK_PIXBUF_DISABLE_DEPRECATED +G_DEPRECATED_FOR(g_object_ref) GdkPixbuf *gdk_pixbuf_ref (GdkPixbuf *pixbuf); +G_DEPRECATED_FOR(g_object_unref) void gdk_pixbuf_unref (GdkPixbuf *pixbuf); #endif |