edbus: Add proxy to Proxy_Event_Property_Changed

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>



SVN revision: 80695
This commit is contained in:
José Roberto de Souza 2012-12-11 19:50:45 +00:00 committed by Lucas De Marchi
parent cb6aab3513
commit 53f9a1cafc
2 changed files with 3 additions and 1 deletions

View File

@ -299,6 +299,7 @@ _property_changed_iter(void *data, const void *key, EDBus_Message_Iter *var)
event.name = skey;
event.value = value;
event.proxy = proxy;
_edbus_proxy_event_callback_call(proxy, EDBUS_PROXY_EVENT_PROPERTY_CHANGED,
&event);
eina_value_free(st_value);

View File

@ -109,13 +109,14 @@ typedef enum
typedef struct _EDBus_Proxy_Event_Property_Changed
{
const char *name;
const EDBus_Proxy *proxy;
const Eina_Value *value;
} EDBus_Proxy_Event_Property_Changed;
typedef struct _EDBus_Proxy_Event_Property_Removed
{
const char *interface;
EDBus_Proxy *proxy;
const EDBus_Proxy *proxy;
const char *name;
} EDBus_Proxy_Event_Property_Removed;