From: Lucas De Marchi Date: Fri, 14 Dec 2012 16:28:27 +0000 (+0000) Subject: edbus: Give proper doc to edbus_service_property_changed() X-Git-Tag: upstream/1.7.8~77 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7674fa16a75586028bfbcf30ba44c9731d55da7e;p=platform%2Fupstream%2Feldbus.git edbus: Give proper doc to edbus_service_property_changed() SVN revision: 80961 --- diff --git a/src/lib/edbus_service.h b/src/lib/edbus_service.h index da3e6c1..326b3b4 100644 --- a/src/lib/edbus_service.h +++ b/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);