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/gtkstatusicon.h | |
parent | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff) | |
download | gtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz |
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkstatusicon.h')
-rw-r--r-- | gtk/gtkstatusicon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkstatusicon.h b/gtk/gtkstatusicon.h index 5508066cac..758ed0a9fa 100644 --- a/gtk/gtkstatusicon.h +++ b/gtk/gtkstatusicon.h @@ -102,8 +102,8 @@ void gtk_status_icon_set_from_gicon (GtkStatusIcon *st GtkImageType gtk_status_icon_get_storage_type (GtkStatusIcon *status_icon); GdkPixbuf *gtk_status_icon_get_pixbuf (GtkStatusIcon *status_icon); -G_CONST_RETURN gchar *gtk_status_icon_get_stock (GtkStatusIcon *status_icon); -G_CONST_RETURN gchar *gtk_status_icon_get_icon_name (GtkStatusIcon *status_icon); +const gchar * gtk_status_icon_get_stock (GtkStatusIcon *status_icon); +const gchar * gtk_status_icon_get_icon_name (GtkStatusIcon *status_icon); GIcon *gtk_status_icon_get_gicon (GtkStatusIcon *status_icon); gint gtk_status_icon_get_size (GtkStatusIcon *status_icon); @@ -120,7 +120,7 @@ void gtk_status_icon_set_tooltip_markup (GtkStatusIcon *st const gchar *markup); void gtk_status_icon_set_title (GtkStatusIcon *status_icon, const gchar *title); -G_CONST_RETURN gchar *gtk_status_icon_get_title (GtkStatusIcon *status_icon); +const gchar * gtk_status_icon_get_title (GtkStatusIcon *status_icon); void gtk_status_icon_set_name (GtkStatusIcon *status_icon, const gchar *name); void gtk_status_icon_set_visible (GtkStatusIcon *status_icon, |