diff options
author | JinYong Park <j4939.park@samsung.com> | 2017-10-27 11:29:43 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-10-27 11:29:43 +0900 |
commit | 5c74ee26471dffea2bdaa4ab60a9a60d947a9cf2 (patch) | |
tree | 7b6a5a2c7783f994d3b5e0fe73b3a6445781e1c9 /src/lib | |
parent | c78b4dbd00478dfa7893df64ec1d459dcef0ac99 (diff) |
elm_entry: add missing parameter description
Summary: Add missing parameter description to remove doxygen warning
Test Plan: API Doxygen Revision
Reviewers: cedric, jpeg, myoungwoon, id213sin
Differential Revision: https://phab.enlightenment.org/D5389
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elementary/elm_entry_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_entry_common.h b/src/lib/elementary/elm_entry_common.h index b9172c0e2a..6c5d2151d0 100644 --- a/src/lib/elementary/elm_entry_common.h +++ b/src/lib/elementary/elm_entry_common.h | |||
@@ -177,6 +177,10 @@ struct _Elm_Entry_Filter_Limit_Size | |||
177 | * The function works on the UTF-8 representation of the string, converting | 177 | * The function works on the UTF-8 representation of the string, converting |
178 | * it from the set markup, thus not accounting for any format in it. | 178 | * it from the set markup, thus not accounting for any format in it. |
179 | * | 179 | * |
180 | * @param[in] data The data passed to this function. | ||
181 | * @param[in] entry The object. | ||
182 | * @param[in,out] text The entry's text to limit size | ||
183 | * | ||
180 | * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass | 184 | * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass |
181 | * it as data when setting the filter. In it, it's possible to set limits | 185 | * it as data when setting the filter. In it, it's possible to set limits |
182 | * by character count or bytes (any of them is disabled if 0), and both can | 186 | * by character count or bytes (any of them is disabled if 0), and both can |
@@ -218,6 +222,10 @@ struct _Elm_Entry_Filter_Accept_Set | |||
218 | * mutually exclusive. This structure must be available for as long as | 222 | * mutually exclusive. This structure must be available for as long as |
219 | * the entry is alive AND the elm_entry_filter_accept_set is being used. | 223 | * the entry is alive AND the elm_entry_filter_accept_set is being used. |
220 | * | 224 | * |
225 | * @param[in] data The data passed to this function. | ||
226 | * @param[in] entry The object. | ||
227 | * @param[in,out] text The entry's text to accept or reject filter | ||
228 | * | ||
221 | * The @c accepted set takes preference, so if it is set, the filter will | 229 | * The @c accepted set takes preference, so if it is set, the filter will |
222 | * only work based on the accepted characters, ignoring anything in the | 230 | * only work based on the accepted characters, ignoring anything in the |
223 | * @c rejected value. If @c accepted is @c NULL, then @c rejected is used. | 231 | * @c rejected value. If @c accepted is @c NULL, then @c rejected is used. |