2ccb8eb
diff -up at-spi2-atk-0.1.5/atk-adaptor/adaptors/collection-adaptor.c.build at-spi2-atk-0.1.5/atk-adaptor/adaptors/collection-adaptor.c
2ccb8eb
--- at-spi2-atk-0.1.5/atk-adaptor/adaptors/collection-adaptor.c.build	2010-01-18 11:23:40.857577894 -0500
2ccb8eb
+++ at-spi2-atk-0.1.5/atk-adaptor/adaptors/collection-adaptor.c	2010-01-18 11:26:16.918568256 -0500
2ccb8eb
@@ -52,27 +52,27 @@ static gboolean
2ccb8eb
 child_interface_p (AtkObject * child, gchar * repo_id)
2ccb8eb
 {
2ccb8eb
   if (!strcasecmp (repo_id, "action"))
2ccb8eb
-    return atk_is_action (child);
2ccb8eb
+    return ATK_IS_ACTION (child);
2ccb8eb
   if (!strcasecmp (repo_id, "component"))
2ccb8eb
-    return atk_is_component (child);
2ccb8eb
+    return ATK_IS_COMPONENT (child);
2ccb8eb
   if (!strcasecmp (repo_id, "editabletext"))
2ccb8eb
-    return atk_is_editable_text (child);
2ccb8eb
+    return ATK_IS_EDITABLE_TEXT (child);
2ccb8eb
   if (!strcasecmp (repo_id, "text"))
2ccb8eb
-    return atk_is_text (child);
2ccb8eb
+    return ATK_IS_TEXT (child);
2ccb8eb
   if (!strcasecmp (repo_id, "hypertext"))
2ccb8eb
-    return atk_is_hypertext (child);
2ccb8eb
+    return ATK_IS_HYPERTEXT (child);
2ccb8eb
   if (!strcasecmp (repo_id, "image"))
2ccb8eb
-    return atk_is_image (child);
2ccb8eb
+    return ATK_IS_IMAGE (child);
2ccb8eb
   if (!strcasecmp (repo_id, "selection"))
2ccb8eb
-    return atk_is_selection (child);
2ccb8eb
+    return ATK_IS_SELECTION (child);
2ccb8eb
   if (!strcasecmp (repo_id, "table"))
2ccb8eb
-    return atk_is_table (child);
2ccb8eb
+    return ATK_IS_TABLE (child);
2ccb8eb
   if (!strcasecmp (repo_id, "value"))
2ccb8eb
-    return atk_is_value (child);
2ccb8eb
+    return ATK_IS_VALUE (child);
2ccb8eb
   if (!strcasecmp (repo_id, "streamablecontent"))
2ccb8eb
-    return atk_is_streamable_content (child);
2ccb8eb
+    return ATK_IS_STREAMABLE_CONTENT (child);
2ccb8eb
   if (!strcasecmp (repo_id, "document"))
2ccb8eb
-    return atk_is_document (child);
2ccb8eb
+    return ATK_IS_DOCUMENT (child);
2ccb8eb
   return FALSE;
2ccb8eb
 }
2ccb8eb
 
2ccb8eb
diff -up at-spi2-atk-0.1.5/atk-adaptor/adaptors/component-adaptor.c.build at-spi2-atk-0.1.5/atk-adaptor/adaptors/component-adaptor.c