From: Bartlomiej Uliasz Date: Thu, 24 Mar 2016 11:17:07 +0000 (+0100) Subject: Doxygen style comments - data_location X-Git-Tag: accepted/tizen/tv/20160923.050049~10^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F34%2F63534%2F4;p=profile%2Ftv%2Fapps%2Fnative%2Fair_settings.git Doxygen style comments - data_location Change-Id: I3c096a854f449e74ce63a98655159f809022343e Signed-off-by: Bartlomiej Uliasz --- diff --git a/include/data/system/data_location.h b/include/data/system/data_location.h index daad099..2e6e148 100644 --- a/include/data/system/data_location.h +++ b/include/data/system/data_location.h @@ -29,20 +29,24 @@ struct country_info_s { }; /** -* @brief +* @brief Set new country location in system settings. * -* @param selected_item +* @param[in] selected_item Elm_Object_Item with country_info_s in data. */ void data_location_set_new_system_location(Elm_Object_Item *selected_item); /** -* @brief +* @brief Fill grid list with list of country names in specified language. * -* @param list_mgr -* @param get_country -* @param lang +* @param[in] list_mgr List manager. +* @param[out] get_country Output variable to save current country item in. +* @param[in] lang Language the country names should be in. */ void data_location_fill_list_data(struct listmgr *list_mgr, Elm_Object_Item **get_country, const char *lang); + +/** +* @brief Free country list memory. +*/ void data_location_free_list_data(); #endif /* __AIR_SETTINGS_DATA_LOCATION_H__ */