summaryrefslogtreecommitdiff
path: root/gtk/gtkactiongroup.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2011-06-06 19:13:44 +0100
committerJavier Jardón <jjardon@gnome.org>2011-06-10 13:07:54 +0100
commitbf0d8402f5382fadd32a9748d00a4bcd715ea07a (patch)
treefb60ab4c6589c0dac140fe16b63fced2d7bbf070 /gtk/gtkactiongroup.h
parenta8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff)
downloadgtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkactiongroup.h')
-rw-r--r--gtk/gtkactiongroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkactiongroup.h b/gtk/gtkactiongroup.h
index 33fa000dfa..aae24a8600 100644
--- a/gtk/gtkactiongroup.h
+++ b/gtk/gtkactiongroup.h
@@ -160,7 +160,7 @@ struct _GtkRadioActionEntry
GType gtk_action_group_get_type (void) G_GNUC_CONST;
GtkActionGroup *gtk_action_group_new (const gchar *name);
-G_CONST_RETURN gchar *gtk_action_group_get_name (GtkActionGroup *action_group);
+const gchar *gtk_action_group_get_name (GtkActionGroup *action_group);
gboolean gtk_action_group_get_sensitive (GtkActionGroup *action_group);
void gtk_action_group_set_sensitive (GtkActionGroup *action_group,
gboolean sensitive);
@@ -214,7 +214,7 @@ void gtk_action_group_set_translate_func (GtkActionGroup
GDestroyNotify notify);
void gtk_action_group_set_translation_domain (GtkActionGroup *action_group,
const gchar *domain);
-G_CONST_RETURN gchar *gtk_action_group_translate_string (GtkActionGroup *action_group,
+const gchar * gtk_action_group_translate_string (GtkActionGroup *action_group,
const gchar *string);
/* Protected for use by GtkAction */