diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2005-11-23 17:54:55 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2005-11-23 17:54:55 +0000 |
commit | 4f11308e79cafe463593c5cdc62c75c050a10d32 (patch) | |
tree | b23ced0f64a16a502105557c6cc1fcdbf2dc58d3 /pango/pango-script.c | |
parent | c19e8c5458fb9dd9673137f07ea0e81608a47cea (diff) | |
download | pango-4f11308e79cafe463593c5cdc62c75c050a10d32.tar.gz |
Added "Since:" tags to all interfaces added after Pango 1.0. (#319116,
2005-11-23 Behdad Esfahbod <behdad@gnome.org>
* pango/fonts.c pango/pango-attributes.c pango/pango-context.c
pango/pango-glyph-item.c pango/pango-layout.c
pango/pango-script.c pango/pango-utils.c pango/pangofc-font.c
pango/pangoft2-fontmap.c pango/opentype/pango-ot-buffer.c
pango/opentype/pango-ot-ruleset.c: Added "Since:" tags to all
interfaces added after Pango 1.0. (#319116, Brian Cameron)
Diffstat (limited to 'pango/pango-script.c')
-rw-r--r-- | pango/pango-script.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pango/pango-script.c b/pango/pango-script.c index 00bf4347..5e305953 100644 --- a/pango/pango-script.c +++ b/pango/pango-script.c @@ -119,6 +119,8 @@ pango_script_for_unichar_bsearch (gunichar ch) * result is undefined. * * Return value: the #PangoScript for the character. + * + * Since: 1.4 **/ PangoScript pango_script_for_unichar (gunichar ch) @@ -144,6 +146,8 @@ pango_script_for_unichar (gunichar ch) * Return value: the new script iterator, initialized * to point at the first range in the text. If the string is * empty, it will point at an empty range. + * + * Since: 1.4 **/ PangoScriptIter * pango_script_iter_new (const char *text, @@ -173,6 +177,8 @@ pango_script_iter_new (const char *text, * @iter: a #PangoScriptIter * * Frees a #PangoScriptIter created with pango_script_iter_new(). + * + * Since: 1.4 **/ void pango_script_iter_free (PangoScriptIter *iter) @@ -190,6 +196,8 @@ pango_script_iter_free (PangoScriptIter *iter) * Gets information about the range to which @iter currently points. * The range is the set of locations p where *start <= p < *end. * (That is, it doesn't include the character stored at *end) + * + * Since: 1.4 **/ void pango_script_iter_get_range (PangoScriptIter *iter, @@ -263,6 +271,8 @@ get_pair_index (gunichar ch) * is returned. * * Return value: %TRUE if the iter was succesfully advanced. + * + * Since: 1.4 **/ gboolean pango_script_iter_next (PangoScriptIter *iter) |