diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-06-06 19:13:44 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-06-10 13:07:54 +0100 |
commit | bf0d8402f5382fadd32a9748d00a4bcd715ea07a (patch) | |
tree | fb60ab4c6589c0dac140fe16b63fced2d7bbf070 /gtk/gtkiconfactory.h | |
parent | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff) | |
download | gtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz |
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkiconfactory.h')
-rw-r--r-- | gtk/gtkiconfactory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkiconfactory.h b/gtk/gtkiconfactory.h index 1faf7b73cd..17b0c92651 100644 --- a/gtk/gtkiconfactory.h +++ b/gtk/gtkiconfactory.h @@ -109,7 +109,7 @@ GtkIconSize gtk_icon_size_register (const gchar *name, void gtk_icon_size_register_alias (const gchar *alias, GtkIconSize target); GtkIconSize gtk_icon_size_from_name (const gchar *name); -G_CONST_RETURN gchar* gtk_icon_size_get_name (GtkIconSize size); +const gchar* gtk_icon_size_get_name (GtkIconSize size); /* Icon sets */ @@ -153,9 +153,9 @@ void gtk_icon_source_set_icon_name (GtkIconSource *so void gtk_icon_source_set_pixbuf (GtkIconSource *source, GdkPixbuf *pixbuf); -G_CONST_RETURN gchar* gtk_icon_source_get_filename (const GtkIconSource *source); -G_CONST_RETURN gchar* gtk_icon_source_get_icon_name (const GtkIconSource *source); -GdkPixbuf* gtk_icon_source_get_pixbuf (const GtkIconSource *source); +const gchar * gtk_icon_source_get_filename (const GtkIconSource *source); +const gchar * gtk_icon_source_get_icon_name (const GtkIconSource *source); +GdkPixbuf* gtk_icon_source_get_pixbuf (const GtkIconSource *source); void gtk_icon_source_set_direction_wildcarded (GtkIconSource *source, gboolean setting); |