From e79b37d413ae5bad8cbb813f4720fb0a38bb94d0 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 3 Jun 2007 20:23:49 +0000 Subject: Rename pango_ot_ruleset_get_for() to 2007-06-03 Behdad Esfahbod * docs/pango-sections.txt: * docs/tmpl/opentype.sgml: * modules/arabic/arabic-fc.c (arabic_engine_shape): * modules/basic/basic-fc.c (basic_engine_shape): * modules/hebrew/hebrew-fc.c (hebrew_engine_shape): * modules/indic/indic-fc.c (indic_engine_shape): * modules/khmer/khmer-fc.c (khmer_engine_shape): * modules/syriac/syriac-fc.c (syriac_engine_shape): * modules/thai/thai-fc.c (thai_engine_shape): * modules/tibetan/tibetan-fc.c (tibetan_engine_shape): * pango/pango-ot-ruleset.c (pango_ot_ruleset_get_for_description), (pango_ot_ruleset_new_from_description): * pango/pango-ot.h: * pango/pangoft2.def: Rename pango_ot_ruleset_get_for() to pango_ot_ruleset_get_for_description(). New engine API: pango_ot_ruleset_new_from_description(). svn path=/trunk/; revision=2328 --- modules/arabic/arabic-fc.c | 2 +- modules/basic/basic-fc.c | 2 +- modules/hebrew/hebrew-fc.c | 2 +- modules/indic/indic-fc.c | 2 +- modules/khmer/khmer-fc.c | 2 +- modules/syriac/syriac-fc.c | 2 +- modules/thai/thai-fc.c | 2 +- modules/tibetan/tibetan-fc.c | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'modules') diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c index 9635278b..e7f53bd8 100644 --- a/modules/arabic/arabic-fc.c +++ b/modules/arabic/arabic-fc.c @@ -172,7 +172,7 @@ arabic_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_substitute (ruleset, buffer); pango_ot_ruleset_position (ruleset, buffer); diff --git a/modules/basic/basic-fc.c b/modules/basic/basic-fc.c index 85687f1b..d8587256 100644 --- a/modules/basic/basic-fc.c +++ b/modules/basic/basic-fc.c @@ -201,7 +201,7 @@ basic_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_substitute (ruleset, buffer); pango_ot_ruleset_position (ruleset, buffer); diff --git a/modules/hebrew/hebrew-fc.c b/modules/hebrew/hebrew-fc.c index baff892d..7f59b281 100644 --- a/modules/hebrew/hebrew-fc.c +++ b/modules/hebrew/hebrew-fc.c @@ -263,7 +263,7 @@ hebrew_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_get_feature_count (ruleset, NULL, &n_gpos_features); if (n_gpos_features == 0) diff --git a/modules/indic/indic-fc.c b/modules/indic/indic-fc.c index 09f70545..d73b94dc 100644 --- a/modules/indic/indic-fc.c +++ b/modules/indic/indic-fc.c @@ -268,7 +268,7 @@ indic_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); /* do gsub processing */ pango_ot_ruleset_substitute (ruleset, buffer); diff --git a/modules/khmer/khmer-fc.c b/modules/khmer/khmer-fc.c index 05011c5f..7c2486cd 100644 --- a/modules/khmer/khmer-fc.c +++ b/modules/khmer/khmer-fc.c @@ -665,7 +665,7 @@ khmer_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_substitute (ruleset, buffer); pango_ot_ruleset_position (ruleset, buffer); diff --git a/modules/syriac/syriac-fc.c b/modules/syriac/syriac-fc.c index be4aff9c..cbdce5be 100644 --- a/modules/syriac/syriac-fc.c +++ b/modules/syriac/syriac-fc.c @@ -162,7 +162,7 @@ syriac_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_substitute (ruleset, buffer); pango_ot_ruleset_position (ruleset, buffer); diff --git a/modules/thai/thai-fc.c b/modules/thai/thai-fc.c index 68459926..d97b9306 100644 --- a/modules/thai/thai-fc.c +++ b/modules/thai/thai-fc.c @@ -290,7 +290,7 @@ thai_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); font_info = thai_get_font_info (font, ruleset); diff --git a/modules/tibetan/tibetan-fc.c b/modules/tibetan/tibetan-fc.c index 57dd6133..ff65071c 100644 --- a/modules/tibetan/tibetan-fc.c +++ b/modules/tibetan/tibetan-fc.c @@ -518,7 +518,7 @@ tibetan_engine_shape (PangoEngineShape *engine, desc.n_other_features = 0; desc.other_features = NULL; - ruleset = pango_ot_ruleset_get_for (pango_ot_info_get (face), &desc); + ruleset = pango_ot_ruleset_get_for_description (pango_ot_info_get (face), &desc); pango_ot_ruleset_substitute (ruleset, buffer); pango_ot_ruleset_position (ruleset, buffer); -- cgit v1.2.1