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/gtkfontsel.c | |
parent | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (diff) | |
download | gtk+-bf0d8402f5382fadd32a9748d00a4bcd715ea07a.tar.gz |
gtk: Use const instead G_CONST_RETURN
Diffstat (limited to 'gtk/gtkfontsel.c')
-rw-r--r-- | gtk/gtkfontsel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c index 7885899752..4beed4c2ce 100644 --- a/gtk/gtkfontsel.c +++ b/gtk/gtkfontsel.c @@ -1563,7 +1563,7 @@ gtk_font_selection_set_font_name (GtkFontSelection *fontsel, * This string is owned by the widget and should not be * modified or freed */ -G_CONST_RETURN gchar* +const gchar* gtk_font_selection_get_preview_text (GtkFontSelection *fontsel) { GtkFontSelectionPrivate *priv; @@ -1868,7 +1868,7 @@ gtk_font_selection_dialog_set_font_name (GtkFontSelectionDialog *fsd, * This string is owned by the widget and should not be * modified or freed */ -G_CONST_RETURN gchar* +const gchar* gtk_font_selection_dialog_get_preview_text (GtkFontSelectionDialog *fsd) { GtkFontSelectionDialogPrivate *priv; |