Renamed "target" member of Event to "source".
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_Event.idl
index 3d32618..3e9d01a 100644 (file)
 
 #include <Bonobo.idl>
 
-#if !defined(__ACCESSIBILITY_EVENT_COMPILATION) && defined(__ORBIT_IDL__)
-%{
-#pragma include_defs Accessible.h
-#pragma include_defs Event.h
-%}
-#pragma inhibit push
-#endif
-
-#pragma inhibit push
-#include "Accessible.idl"
-#pragma inhibit pop
-
 module Accessibility
 {
   interface Accessible;
 
   struct Event {
     string type;
-    Accessible target;
+    Accessible source;
     long detail1;
     long detail2;
   };
 
   interface EventListener : Bonobo::Unknown {
+    attribute long hash_id;
     oneway void notifyEvent (in Event e);
   };
 
 };
 
-#if !defined(__ACCESSIBILITY_EVENT_COMPILATION) && defined(__ORBIT_IDL__)
-#pragma inhibit pop
-#endif
-
 #endif