elm_entry: add missing parameter description (upstream merged) 43/157943/2
authorJinYong Park <j4939.park@samsung.com>
Fri, 27 Oct 2017 02:49:28 +0000 (11:49 +0900)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Fri, 27 Oct 2017 02:53:32 +0000 (02:53 +0000)
Summary : Add missing parameter description to remove doxygen warning

Test Plan : API Doxygen Revision

https://phab.enlightenment.org/D5389

Change-Id: Ie95de1c8a9dcb74a42c726a0c184e0aee3fbc520
Signed-off-by: JinYong Park <j4939.park@samsung.com>
src/lib/elm_entry_common.h

index 788611db26ca79e396924ff30dbc857c30925cc4..509d9cb396a01bad36bd7317c10da959338b0fb6 100644 (file)
@@ -182,6 +182,10 @@ struct _Elm_Entry_Filter_Limit_Size
  * The function works on the UTF-8 representation of the string, converting
  * it from the set markup, thus not accounting for any format in it.
  *
+ * @param[in] data The data passed to this function.
+ * @param[in] entry The object.
+ * @param[in,out] text The entry's text to limit size
+ *
  * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
  * it as data when setting the filter. In it, it's possible to set limits
  * by character count or bytes (any of them is disabled if 0), and both can
@@ -227,6 +231,10 @@ struct _Elm_Entry_Filter_Accept_Set
  * mutually exclusive. This structure must be available for as long as
  * the entry is alive AND the elm_entry_filter_accept_set is being used.
  *
+ * @param[in] data The data passed to this function.
+ * @param[in] entry The object.
+ * @param[in,out] text The entry's text to accept or reject filter
+ *
  * The @c accepted set takes preference, so if it is set, the filter will
  * only work based on the accepted characters, ignoring anything in the
  * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.