From 855d3545376a037fc73712ac5879e4130783b3b1 Mon Sep 17 00:00:00 2001 From: Luke Yelavich Date: Tue, 1 Feb 2011 17:49:23 +1100 Subject: use const gchar for variable and prototype --- libindicator/indicator-object.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libindicator') diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h index ea303f8..b79aef4 100644 --- a/libindicator/indicator-object.h +++ b/libindicator/indicator-object.h @@ -102,7 +102,7 @@ struct _IndicatorObjectClass { GtkLabel * (*get_label) (IndicatorObject * io); GtkImage * (*get_image) (IndicatorObject * io); GtkMenu * (*get_menu) (IndicatorObject * io); - gchar * (*get_accessible_name) (IndicatorObject * io); + const gchar * (*get_accessible_name) (IndicatorObject * io); GList * (*get_entries) (IndicatorObject * io); guint (*get_location) (IndicatorObject * io, IndicatorObjectEntry * entry); @@ -151,7 +151,7 @@ struct _IndicatorObjectEntry { GtkLabel * label; GtkImage * image; GtkMenu * menu; - gchar * accessible_name; + const gchar * accessible_name; }; GType indicator_object_get_type (void); -- cgit v1.2.3