summaryrefslogtreecommitdiff
path: root/pango/pango-attributes.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2009-01-07 23:45:22 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2009-01-07 23:45:22 +0000
commita46d5ae6533e46d3522e0a45c3c9d5ded0ea5394 (patch)
treeaf99c6afa61afe1f8f7bd45eee2301a87d9eb748 /pango/pango-attributes.c
parenta457bf39f99b744bc7c0fa8064d0a0d3d1961078 (diff)
downloadpango-a46d5ae6533e46d3522e0a45c3c9d5ded0ea5394.tar.gz
Bug 566941 – Add PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING and
2009-01-07 Behdad Esfahbod <behdad@gnome.org> Bug 566941 – Add PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING and PANGO_ATTRIBUTE_INDEX_TO_TEXT_END * docs/pango-sections.txt: * docs/tmpl/text-attributes.sgml: * pango/pango-attributes.c (pango_attribute_init): * pango/pango-attributes.h: Add two new public macros: PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING PANGO_ATTRIBUTE_INDEX_TO_TEXT_END svn path=/trunk/; revision=2793
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r--pango/pango-attributes.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c
index 49cca1e4..2ca8f2c1 100644
--- a/pango/pango-attributes.c
+++ b/pango/pango-attributes.c
@@ -113,8 +113,10 @@ pango_attr_type_get_name (PangoAttrType type)
* @attr: a #PangoAttribute
* @klass: a #PangoAttributeClass
*
- * Initializes @attr's klass to @klass, it's start_index to zero,
- * and end_index to %G_MAXUINT such that the attribute applies
+ * Initializes @attr's klass to @klass,
+ * it's start_index to %PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING
+ * and end_index to %PANGO_ATTR_INDEX_TO_TEXT_END
+ * such that the attribute applies
* to the entire text by default.
*
* Since: 1.20
@@ -127,8 +129,8 @@ pango_attribute_init (PangoAttribute *attr,
g_return_if_fail (klass != NULL);
attr->klass = klass;
- attr->start_index = 0;
- attr->end_index = G_MAXUINT;
+ attr->start_index = PANGO_ATTR_INDEX_FROM_TEXT_BEGINNING;
+ attr->end_index = PANGO_ATTR_INDEX_TO_TEXT_END;
}
/**