summaryrefslogtreecommitdiff
path: root/pango/pangoft2.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2004-07-19 20:34:36 +0000
committerOwen Taylor <otaylor@src.gnome.org>2004-07-19 20:34:36 +0000
commita2d99597dd1888d31f9fdd802ed80663875deca7 (patch)
treeaf97bbdf196e9020748669810a384e5f0b813d57 /pango/pangoft2.c
parentbc5be9fd1d9c8d89ed65e7e351117474f69b3983 (diff)
downloadpango-a2d99597dd1888d31f9fdd802ed80663875deca7.tar.gz
Need to export this function as a symbol if not in the header file since
Fri Jul 16 10:29:40 2004 Owen Taylor <otaylor@redhat.com> * pango/pangofc-font.c pango/pangofc-private.h (pango_fc_font_get_raw_extents): Need to export this function as a symbol if not in the header file since it is used by PangoXft.
Diffstat (limited to 'pango/pangoft2.c')
-rw-r--r--pango/pangoft2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pango/pangoft2.c b/pango/pangoft2.c
index 3578bf4e..082b6725 100644
--- a/pango/pangoft2.c
+++ b/pango/pangoft2.c
@@ -537,10 +537,10 @@ pango_ft2_font_get_glyph_info (PangoFont *font,
{
info = g_new0 (PangoFT2GlyphInfo, 1);
- _pango_fc_font_get_raw_extents (fcfont, ft2font->load_flags,
- glyph,
- &info->ink_rect,
- &info->logical_rect);
+ pango_fc_font_get_raw_extents (fcfont, ft2font->load_flags,
+ glyph,
+ &info->ink_rect,
+ &info->logical_rect);
g_hash_table_insert (ft2font->glyph_info, GUINT_TO_POINTER(glyph), info);
}