Merge branch 'mgorse' of git+ssh://git.codethink.co.uk/git/atspi-dbus into rework
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / introspectable.c
index 4909e30..44d5eef 100644 (file)
@@ -23,8 +23,8 @@
 #include <glib.h>
 #include <accessible.h>
 
-#include "droute/droute.h"
-#include "droute/introspect-loader.h"
+#include <droute/droute.h>
+#include <droute/introspect-loader.h>
 
 /*
  * This file contains an implementation of the D-Bus introspectable interface.
@@ -112,9 +112,9 @@ static DRouteMethod methods[] = {
  * Adds the introspectable interface to the DRoute object provided
  */
 void
-spi_initialize_introspectable (DRouteData *data)
+spi_initialize_introspectable (DRouteData *data, DRouteGetDatumFunction verify_object)
 {
   droute_add_interface (data, "org.freedesktop.atspi.Introspectable",
                        methods, NULL,
-                       (DRouteGetDatumFunction) spi_dbus_get_path, NULL);
+                       verify_object, NULL);
 };