diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2011-04-19 00:37:56 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2011-04-19 00:37:56 -0400 |
commit | 315d5c91c89fb41eec64d00b42e38eb2117fbfa4 (patch) | |
tree | b6aca0dc0ac03a0b04fe86278df5d54132474ffb /pango/pango-ot-info.c | |
parent | 09b3b27fad48e34507cb1319fe1519c8de358c85 (diff) | |
download | pango-315d5c91c89fb41eec64d00b42e38eb2117fbfa4.tar.gz |
Update to HarfBuzz API changes
Diffstat (limited to 'pango/pango-ot-info.c')
-rw-r--r-- | pango/pango-ot-info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pango-ot-info.c b/pango/pango-ot-info.c index 9b4382fe..79c3cb2b 100644 --- a/pango/pango-ot-info.c +++ b/pango/pango-ot-info.c @@ -404,8 +404,8 @@ _pango_ot_info_position (const PangoOTInfo *info, /* Apply default positioning */ num_glyphs = hb_buffer_get_length (buffer->buffer); - hb_glyph = hb_buffer_get_glyph_infos (buffer->buffer); - hb_position = hb_buffer_get_glyph_positions (buffer->buffer); + hb_glyph = hb_buffer_get_glyph_infos (buffer->buffer, NULL); + hb_position = hb_buffer_get_glyph_positions (buffer->buffer, NULL); hb_ot_layout_position_start (buffer->buffer); |