2008-11-28 Mike Gorse <mgorse@novell.com>
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / table.c
index 83de354..868ae1f 100644 (file)
@@ -27,7 +27,7 @@
 static AtkTable *
 get_table (DBusMessage * message)
 {
-  AtkObject *obj = spi_dbus_get_object (dbus_message_get_path (message));
+  AtkObject *obj = atk_dbus_get_object (dbus_message_get_path (message));
   if (!obj)
     return NULL;
   return ATK_TABLE (obj);
@@ -36,7 +36,7 @@ get_table (DBusMessage * message)
 static AtkTable *
 get_table_from_path (const char *path, void *user_data)
 {
-  AtkObject *obj = spi_dbus_get_object (path);
+  AtkObject *obj = atk_dbus_get_object (path);
   if (!obj || !ATK_IS_TABLE(obj))
     return NULL;
   return ATK_TABLE (obj);