From 7a3fd939485d5bdd075010df5c9d0730eedfc046 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Fri, 14 Dec 2012 16:28:27 +0000 Subject: [PATCH] edbus: Give proper doc to edbus_service_property_changed() SVN revision: 80961 --- legacy/edbus/src/lib/edbus_service.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/legacy/edbus/src/lib/edbus_service.h b/legacy/edbus/src/lib/edbus_service.h index da3e6c1182..326b3b4f77 100644 --- a/legacy/edbus/src/lib/edbus_service.h +++ b/legacy/edbus/src/lib/edbus_service.h @@ -175,9 +175,12 @@ EAPI void *edbus_service_object_data_get(const EDBus_Service_Interface *iface, c EAPI void *edbus_service_object_data_del(EDBus_Service_Interface *iface, const char *key) EINA_ARG_NONNULL(1, 2); /** - * Add property to changed list. * - * A PropertiesChanged signal will be send on next idler iteration with all - * properties in changed list. + * @brief Add property to list of changed properties + * A DBus.PropertiesChanged signal will be sent in an idler with all properties + * that have changed. + * + * @param iface Interface containing the changed property + * @param name Property name */ EAPI Eina_Bool edbus_service_property_changed(const EDBus_Service_Interface *iface, const char *name) EINA_ARG_NONNULL(1, 2);