diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2001-12-06 21:38:12 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2001-12-06 21:38:12 +0000 |
commit | 31df9723e57581dae20978e28a0e767cf400da91 (patch) | |
tree | 83d344c462db7e53f3a45b4fedf6072147a7bc21 /gdk-pixbuf/gdk-pixbuf.h | |
parent | 83fbfac8f41fd988dc663d64c7738203d484e848 (diff) | |
download | gtk+-31df9723e57581dae20978e28a0e767cf400da91.tar.gz |
Fix docs. (#66383)
* gtk/gtklabel.c: Fix docs. (#66383)
* gtk/gtkbbox.c (gtk_button_box_set_child_secondary): Fix docs.
(#66278, #66280)
* gdk/gdkwindow.h (gdk_window_get_deskrelative_origin),
gdk/gdkimage.h (gdk_image_get): Deprecate. (#66208)
* gtk/gtkcolorsel.c (gtk_color_selection_set_update_policy):
Don't emit a g_warning() about being deprecated. (#66208)
* gtk/gtkaccellabel.c (gtk_accel_label_set_accel_widget): Add docs.
* gtk/gtkcontainer.c: Doc fixes.
* gtk/gtkliststore.c (gtk_list_store_clear): Add docs; misc doc fixes.
* gtk/gtkstyle.c (gtk_style_attach): Add docs.
* gdk-pixbuf.h (gdk_pixbuf_ref, gdk_pixbuf_unref,
gdk_pixbuf_animation_ref, gdk_pixbuf_animation_unref):
Deprecate. (#66208)
* gtk/tmpl/gtklabel.sgml: Remove redundant docs. (#66383)
* gtk/tree_widget.sgml: Typo fix. (#66256)
* gdk-pixbuf/Makefile.am (SCAN_OPTIONS): Add --deprecated-guards.
* gtk/tmpl/gtktext.sgml, gtk/tmpl/gtktree.sgml,
gtk/tmpl/gtktreeitem.sgml: Updates.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf.h b/gdk-pixbuf/gdk-pixbuf.h index f63ce7731c..7c616f8dd6 100644 --- a/gdk-pixbuf/gdk-pixbuf.h +++ b/gdk-pixbuf/gdk-pixbuf.h @@ -96,8 +96,10 @@ GType gdk_pixbuf_get_type (void) G_GNUC_CONST; /* Reference counting */ +#ifndef GDK_PIXBUF_DISABLE_DEPRECATED GdkPixbuf *gdk_pixbuf_ref (GdkPixbuf *pixbuf); void gdk_pixbuf_unref (GdkPixbuf *pixbuf); +#endif /* GdkPixbuf accessors */ @@ -262,8 +264,10 @@ GType gdk_pixbuf_animation_get_type (void) G_GNUC_CONST; GdkPixbufAnimation *gdk_pixbuf_animation_new_from_file (const char *filename, GError **error); +#ifndef GDK_PIXBUF_DISABLE_DEPRECATED GdkPixbufAnimation *gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation); void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation); +#endif int gdk_pixbuf_animation_get_width (GdkPixbufAnimation *animation); int gdk_pixbuf_animation_get_height (GdkPixbufAnimation *animation); |