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-attributes.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-attributes.h')
-rw-r--r-- | pango/pango-attributes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-attributes.h b/pango/pango-attributes.h index 866e35dd..59f97a3a 100644 --- a/pango/pango-attributes.h +++ b/pango/pango-attributes.h @@ -180,7 +180,7 @@ struct _PangoAttrFontDesc }; PangoAttrType pango_attr_type_register (const gchar *name); -G_CONST_RETURN char * pango_attr_type_get_name (PangoAttrType type) G_GNUC_CONST; +const char * pango_attr_type_get_name (PangoAttrType type) G_GNUC_CONST; void pango_attribute_init (PangoAttribute *attr, const PangoAttrClass *klass); |