diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-02-05 23:48:28 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-02-05 23:48:28 +0000 |
commit | 3293001b8aa09a4e812af974b389843c952871bb (patch) | |
tree | 4f5641caed2c5806162f7aff3ef1219db030ec65 /pango/pangocairo-fontmap.c | |
parent | ca73084fad58044f6219fce2e5d0c497f4bbeac0 (diff) | |
download | pango-3293001b8aa09a4e812af974b389843c952871bb.tar.gz |
AC_DEFINE various version components.
2006-02-05 Behdad Esfahbod <behdad@gnome.org>
* configure.in: AC_DEFINE various version components.
* *.c: Change various const return types to G_CONST_RETURN.
Diffstat (limited to 'pango/pangocairo-fontmap.c')
-rw-r--r-- | pango/pangocairo-fontmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pangocairo-fontmap.c b/pango/pangocairo-fontmap.c index 6eb4a63b..b7525b1a 100644 --- a/pango/pangocairo-fontmap.c +++ b/pango/pangocairo-fontmap.c @@ -397,7 +397,7 @@ pango_cairo_context_set_font_options (PangoContext *context, * if no options have been set. This value is owned by the context * and must not be modified or freed. **/ -const cairo_font_options_t * +G_CONST_RETURN cairo_font_options_t * pango_cairo_context_get_font_options (PangoContext *context) { PangoCairoContextInfo *info; @@ -423,7 +423,7 @@ pango_cairo_context_get_font_options (PangoContext *context) * Return value: the combined set of font options. This value is owned * by the context and must not be modified or freed. **/ -const cairo_font_options_t * +G_CONST_RETURN cairo_font_options_t * _pango_cairo_context_get_merged_font_options (PangoContext *context) { PangoCairoContextInfo *info = get_context_info (context, TRUE); |