[HB] Remove unused argument
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 26 Jan 2010 17:58:01 +0000 (12:58 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 26 Jan 2010 17:58:01 +0000 (12:58 -0500)
pango/opentype/hb-ot-layout.cc
pango/opentype/hb-ot-layout.h
pango/pango-ot-info.c

index d1bb49d..8099fc5 100644 (file)
@@ -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)
index 54f785f..ee615ca 100644 (file)
@@ -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);
index 167f553..bd25fca 100644 (file)
@@ -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);