summaryrefslogtreecommitdiff
path: root/pango/pangocoretext-shape.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2015-08-21 13:53:34 +0100
committerBehdad Esfahbod <behdad@behdad.org>2015-08-21 13:53:34 +0100
commitd0d140b0180bfe2c2278f34f5a649a2e7d9f4fa2 (patch)
tree2d86d017dfe76d350fc473cf5c36407ee9191b6b /pango/pangocoretext-shape.c
parentbf500a961f0cbdb1f5b3ac9bb71080e7613df23d (diff)
downloadpango-d0d140b0180bfe2c2278f34f5a649a2e7d9f4fa2.tar.gz
Remove remaining uses of g_utf8_strlen()
Diffstat (limited to 'pango/pangocoretext-shape.c')
-rw-r--r--pango/pangocoretext-shape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangocoretext-shape.c b/pango/pangocoretext-shape.c
index ef066eea..60f6b166 100644
--- a/pango/pangocoretext-shape.c
+++ b/pango/pangocoretext-shape.c
@@ -401,7 +401,7 @@ _pango_core_text_shape (PangoFont *font,
return;
/* Translate the glyph list to a PangoGlyphString */
- n_chars = g_utf8_strlen (text, length);
+ n_chars = pango_utf8_strlen (text, length);
pango_glyph_string_set_size (glyphs, n_chars);
glyph_iter = glyph_list;