diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-06-09 11:36:59 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-06-09 13:02:27 -0400 |
commit | 4c7807daee7189f481d7c18b56b06d7b7dba7884 (patch) | |
tree | cd8356382775b26b5402d0a6b5750fb3faba2b35 /pango/pango-font.h | |
parent | c5a91abf1e24735be6c67dcb5d4e9ee0d66edd65 (diff) | |
download | pango-4c7807daee7189f481d7c18b56b06d7b7dba7884.tar.gz |
Stop using G_CONST_RETURN in Pango
G_CONST_RETURN is headed for deprecation (as per bug #644611). Stop
using it in Pango.
https://bugzilla.gnome.org/show_bug.cgi?id=652202
Diffstat (limited to 'pango/pango-font.h')
-rw-r--r-- | pango/pango-font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pango/pango-font.h b/pango/pango-font.h index b5b2cf14..eea27b4e 100644 --- a/pango/pango-font.h +++ b/pango/pango-font.h @@ -117,7 +117,7 @@ void pango_font_description_set_family (PangoFontDescript const char *family); void pango_font_description_set_family_static (PangoFontDescription *desc, const char *family); -G_CONST_RETURN char *pango_font_description_get_family (const PangoFontDescription *desc) G_GNUC_PURE; +const char *pango_font_description_get_family (const PangoFontDescription *desc) G_GNUC_PURE; void pango_font_description_set_style (PangoFontDescription *desc, PangoStyle style); PangoStyle pango_font_description_get_style (const PangoFontDescription *desc) G_GNUC_PURE; @@ -212,7 +212,7 @@ GType pango_font_family_get_type (void) G_GNUC_CONST; void pango_font_family_list_faces (PangoFontFamily *family, PangoFontFace ***faces, int *n_faces); -G_CONST_RETURN char *pango_font_family_get_name (PangoFontFamily *family) G_GNUC_PURE; +const char *pango_font_family_get_name (PangoFontFamily *family) G_GNUC_PURE; gboolean pango_font_family_is_monospace (PangoFontFamily *family) G_GNUC_PURE; #ifdef PANGO_ENABLE_BACKEND @@ -261,7 +261,7 @@ struct _PangoFontFamilyClass GType pango_font_face_get_type (void) G_GNUC_CONST; PangoFontDescription *pango_font_face_describe (PangoFontFace *face); -G_CONST_RETURN char *pango_font_face_get_face_name (PangoFontFace *face) G_GNUC_PURE; +const char *pango_font_face_get_face_name (PangoFontFace *face) G_GNUC_PURE; void pango_font_face_list_sizes (PangoFontFace *face, int **sizes, int *n_sizes); |