summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2010-01-26 12:58:01 -0500
committerBehdad Esfahbod <behdad@behdad.org>2010-01-26 12:58:01 -0500
commitc7460fc1b71a491a1b33c19ba0d4cd3b8353c7cb (patch)
tree89fa6aa7281e84c60f1eb866c6369743a40a75e3
parent797d46714d27f147277fdd5346648d838c68fb8c (diff)
downloadpango-c7460fc1b71a491a1b33c19ba0d4cd3b8353c7cb.tar.gz
[HB] Remove unused argument
-rw-r--r--pango/opentype/hb-ot-layout.cc1
-rw-r--r--pango/opentype/hb-ot-layout.h1
-rw-r--r--pango/pango-ot-info.c3
3 files changed, 1 insertions, 4 deletions
diff --git a/pango/opentype/hb-ot-layout.cc b/pango/opentype/hb-ot-layout.cc
index d1bb49da..8099fc5f 100644
--- a/pango/opentype/hb-ot-layout.cc
+++ b/pango/opentype/hb-ot-layout.cc
@@ -281,7 +281,6 @@ hb_ot_layout_set_glyph_class (hb_face_t *face,
void
hb_ot_layout_build_glyph_classes (hb_face_t *face,
- uint16_t num_total_glyphs,
hb_codepoint_t *glyphs,
unsigned char *klasses,
uint16_t count)
diff --git a/pango/opentype/hb-ot-layout.h b/pango/opentype/hb-ot-layout.h
index 54f785f6..ee615ca9 100644
--- a/pango/opentype/hb-ot-layout.h
+++ b/pango/opentype/hb-ot-layout.h
@@ -66,7 +66,6 @@ hb_ot_layout_set_glyph_class (hb_face_t *face,
void
hb_ot_layout_build_glyph_classes (hb_face_t *face,
- uint16_t num_total_glyphs,
hb_codepoint_t *glyphs,
unsigned char *klasses,
uint16_t count);
diff --git a/pango/pango-ot-info.c b/pango/pango-ot-info.c
index 167f553c..bd25fcae 100644
--- a/pango/pango-ot-info.c
+++ b/pango/pango-ot-info.c
@@ -301,8 +301,7 @@ synthesize_class_def (PangoOTInfo *info)
g_array_free (glyph_infos, TRUE);
- hb_ot_layout_build_glyph_classes (info->hb_face, info->face->num_glyphs,
- glyph_indices, classes, j);
+ hb_ot_layout_build_glyph_classes (info->hb_face, glyph_indices, classes, j);
g_free (glyph_indices);
g_free (classes);