From 42a2d17bebeb4f24cd14eefbc025268e01120525 Mon Sep 17 00:00:00 2001 From: Padraig O'Briain Date: Wed, 5 Dec 2001 09:34:12 +0000 Subject: Change atk_attribute_register to atk_text_attribute_register, * atk/atk.def atk/atktext.c atk/atktext.h docs/atk-sections.txt docs/tmpl/atktext.sgml tests/testrelation.c: Change atk_attribute_register to atk_text_attribute_register, atk_attribute_get_value to atk_text_attribute_get_value, atk_attribute_get_name to atk_text_attribute_get_name atk_attribute_for_name to atk_text_attribuute_for_name --- atk/atktext.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'atk/atktext.c') diff --git a/atk/atktext.c b/atk/atktext.c index 4ab7415..c0331c5 100755 --- a/atk/atktext.c +++ b/atk/atktext.c @@ -864,7 +864,7 @@ atk_attribute_set_free (AtkAttributeSet *attrib_set) } /** - * atk_attribute_register: + * atk_text_attribute_register: * @name: a name string * * Associate @name with a new #AtkTextAttribute @@ -872,7 +872,7 @@ atk_attribute_set_free (AtkAttributeSet *attrib_set) * Returns: an #AtkTextAttribute associated with @name **/ AtkTextAttribute -atk_attribute_register (const gchar *name) +atk_text_attribute_register (const gchar *name) { g_return_val_if_fail (name, ATK_TEXT_ATTR_INVALID); @@ -884,7 +884,7 @@ atk_attribute_register (const gchar *name) } /** - * atk_attribute_get_name: + * atk_text_attribute_get_name: * @attr: The #AtkTextAttribute whose name is required * * Gets the name corresponding to the #AtkTextAttribute @@ -892,7 +892,7 @@ atk_attribute_register (const gchar *name) * Returns: a string containing the name; this string should not be freed **/ G_CONST_RETURN gchar* -atk_attribute_get_name (AtkTextAttribute attr) +atk_text_attribute_get_name (AtkTextAttribute attr) { GTypeClass *type_class; GEnumValue *value; @@ -925,7 +925,7 @@ atk_attribute_get_name (AtkTextAttribute attr) } /** - * atk_attribute_for_name: + * atk_text_attribute_for_name: * @name: a string which is the (non-localized) name of an ATK text attribute. * * Get the #AtkTextAttribute type corresponding to a text attribute name. @@ -935,7 +935,7 @@ name, * or #ATK_TEXT_ATTRIBUTE_INVALID if no matching text attribute is found. **/ AtkTextAttribute -atk_attribute_for_name (const gchar *name) +atk_text_attribute_for_name (const gchar *name) { GTypeClass *type_class; GEnumValue *value; @@ -979,7 +979,7 @@ atk_attribute_for_name (const gchar *name) /** - * atk_attribute_get_value: + * atk_text_attribute_get_value: * @attr: The #AtkTextAttribute for which a value is required * @index: The index of the required value * @@ -989,8 +989,8 @@ atk_attribute_for_name (const gchar *name) * NULL is returned if there are no values maintained for the attr value. **/ G_CONST_RETURN gchar* -atk_attribute_get_value (AtkTextAttribute attr, - gint index) +atk_text_attribute_get_value (AtkTextAttribute attr, + gint index) { switch (attr) { -- cgit v1.2.1