diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-01-27 05:34:05 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-01-27 05:34:05 +0000 |
commit | 98e2295efc2dbe61b43e83d3d5c65d76505b5bf1 (patch) | |
tree | adede63a16363f2187046c09195ee350411fa79b /gtk/gtkrc.h | |
parent | 318f1c97bc45adc70f0f9cde85822d7c4f92c835 (diff) | |
download | gtk+-98e2295efc2dbe61b43e83d3d5c65d76505b5bf1.tar.gz |
Add deprecation guards for gtk_rc_style_ref/unref and the old file
2007-01-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilesel.h:
* gtk/gtkrc.h:
* gtk/gtk.symbols: Add deprecation guards for gtk_rc_style_ref/unref
and the old file selector. (#348256)
svn path=/trunk/; revision=17223
Diffstat (limited to 'gtk/gtkrc.h')
-rw-r--r-- | gtk/gtkrc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkrc.h b/gtk/gtkrc.h index d107df1936..e14277719d 100644 --- a/gtk/gtkrc.h +++ b/gtk/gtkrc.h @@ -168,8 +168,11 @@ void gtk_rc_add_class_style (GtkRcStyle *rc_style, GType gtk_rc_style_get_type (void) G_GNUC_CONST; GtkRcStyle* gtk_rc_style_new (void); GtkRcStyle* gtk_rc_style_copy (GtkRcStyle *orig); + +#ifndef GTK_DISABLE_DEPRECATED void gtk_rc_style_ref (GtkRcStyle *rc_style); void gtk_rc_style_unref (GtkRcStyle *rc_style); +#endif gchar* gtk_rc_find_module_in_path (const gchar *module_file); gchar* gtk_rc_get_theme_dir (void); |