edbus: Give proper doc to edbus_service_property_changed()

SVN revision: 80961
This commit is contained in:
Lucas De Marchi 2012-12-14 16:28:27 +00:00
parent b54182807b
commit 7a3fd93948
1 changed files with 6 additions and 3 deletions

View File

@ -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); EAPI void *edbus_service_object_data_del(EDBus_Service_Interface *iface, const char *key) EINA_ARG_NONNULL(1, 2);
/** /**
* Add property to changed list. * * @brief Add property to list of changed properties
* A PropertiesChanged signal will be send on next idler iteration with all * A DBus.PropertiesChanged signal will be sent in an idler with all properties
* properties in changed list. * 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); EAPI Eina_Bool edbus_service_property_changed(const EDBus_Service_Interface *iface, const char *name) EINA_ARG_NONNULL(1, 2);