edbus: Rename edbus_object_bus_path_get() to edbus_object_path_get()

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



SVN revision: 79387
This commit is contained in:
José Roberto de Souza 2012-11-16 13:07:45 +00:00 committed by Lucas De Marchi
parent c3828323c2
commit 4fa2b8d735
3 changed files with 4 additions and 4 deletions

View File

@ -360,7 +360,7 @@ edbus_object_bus_name_get(const EDBus_Object *obj)
}
EAPI const char *
edbus_object_bus_path_get(const EDBus_Object *obj)
edbus_object_path_get(const EDBus_Object *obj)
{
EDBUS_OBJECT_CHECK_RETVAL(obj, NULL);
return obj->path;

View File

@ -87,7 +87,7 @@ EAPI void edbus_object_event_callback_del(EDBus_Object *obj, ED
EAPI EDBus_Connection *edbus_object_connection_get(const EDBus_Object *obj) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT;
EAPI const char *edbus_object_bus_name_get(const EDBus_Object *obj) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT;
EAPI const char *edbus_object_bus_path_get(const EDBus_Object *obj) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT;
EAPI const char *edbus_object_path_get(const EDBus_Object *obj) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT;
/**
* @brief Send a message.

View File

@ -532,7 +532,7 @@ edbus_proxy_method_call_new(EDBus_Proxy *proxy, const char *member)
msg = edbus_message_method_call_new(
edbus_object_bus_name_get(proxy->obj),
edbus_object_bus_path_get(proxy->obj),
edbus_object_path_get(proxy->obj),
proxy->interface, member);
return msg;
}
@ -603,7 +603,7 @@ edbus_proxy_signal_handler_add(EDBus_Proxy *proxy, const char *member, EDBus_Sig
EINA_SAFETY_ON_NULL_RETURN_VAL(cb, NULL);
name = edbus_object_bus_name_get(proxy->obj);
path = edbus_object_bus_path_get(proxy->obj);
path = edbus_object_path_get(proxy->obj);
handler = edbus_signal_handler_add(proxy->obj->conn, name, path,
proxy->interface, member, cb, cb_data);