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/gtkfontbutton.h | |
parent | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff) | |
download | gtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz |
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkfontbutton.h')
-rw-r--r-- | gtk/gtkfontbutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfontbutton.h b/gtk/gtkfontbutton.h index bc64767d8d..79d60457ad 100644 --- a/gtk/gtkfontbutton.h +++ b/gtk/gtkfontbutton.h @@ -75,7 +75,7 @@ GType gtk_font_button_get_type (void) G_GNUC_CONST; GtkWidget *gtk_font_button_new (void); GtkWidget *gtk_font_button_new_with_font (const gchar *fontname); -G_CONST_RETURN gchar *gtk_font_button_get_title (GtkFontButton *font_button); +const gchar * gtk_font_button_get_title (GtkFontButton *font_button); void gtk_font_button_set_title (GtkFontButton *font_button, const gchar *title); gboolean gtk_font_button_get_use_font (GtkFontButton *font_button); @@ -84,7 +84,7 @@ void gtk_font_button_set_use_font (GtkFontButton *font_button gboolean gtk_font_button_get_use_size (GtkFontButton *font_button); void gtk_font_button_set_use_size (GtkFontButton *font_button, gboolean use_size); -G_CONST_RETURN gchar* gtk_font_button_get_font_name (GtkFontButton *font_button); +const gchar * gtk_font_button_get_font_name (GtkFontButton *font_button); gboolean gtk_font_button_set_font_name (GtkFontButton *font_button, const gchar *fontname); gboolean gtk_font_button_get_show_style (GtkFontButton *font_button); |