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/gtkbutton.h | |
parent | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff) | |
download | gtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz |
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index a373291b61..997342edc9 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -96,7 +96,7 @@ void gtk_button_set_relief (GtkButton *button, GtkReliefStyle gtk_button_get_relief (GtkButton *button); void gtk_button_set_label (GtkButton *button, const gchar *label); -G_CONST_RETURN gchar *gtk_button_get_label (GtkButton *button); +const gchar * gtk_button_get_label (GtkButton *button); void gtk_button_set_use_underline (GtkButton *button, gboolean use_underline); gboolean gtk_button_get_use_underline (GtkButton *button); |