summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-18 16:27:48 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-08-18 16:27:48 -0400
commit602c83982359f98916967dc88da6b5731fc06798 (patch)
treecf22e2c160b2a09ab6e01c396d788eed934a91df
parent8f6e589aaab62f384c6c8dbc4d0087147bc22237 (diff)
downloadpango-602c83982359f98916967dc88da6b5731fc06798.tar.gz
[HB] Fix wrong method signature
-rw-r--r--pango/opentype/hb-ot-layout-common-private.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/opentype/hb-ot-layout-common-private.hh b/pango/opentype/hb-ot-layout-common-private.hh
index a1d6423f..4d99cb80 100644
--- a/pango/opentype/hb-ot-layout-common-private.hh
+++ b/pango/opentype/hb-ot-layout-common-private.hh
@@ -143,8 +143,8 @@ struct LangSys
inline hb_tag_t get_feature_index (unsigned int i) const
{ return featureIndex[i]; }
inline bool get_feature_indexes (unsigned int *feature_count /* IN/OUT */,
- hb_tag_t *feature_tags /* OUT */) const
- { return featureIndex.get_indexes (feature_count, feature_tags); }
+ unsigned int *feature_indexes /* OUT */) const
+ { return featureIndex.get_indexes (feature_count, feature_indexes); }
inline bool has_required_feature (void) const { return reqFeatureIndex != 0xffff; }
inline int get_required_feature_index (void) const