summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjongmyeongko <jongmyeong.ko@samsung.com>2017-06-13 22:31:49 +0900
committerjongmyeongko <jongmyeong.ko@samsung.com>2017-06-14 12:45:55 +0900
commit6543acee46ac0f16620cdbff89f2f45258535aac (patch)
treee480a7ed5a247e51859e2dde53aa041b6d7952a1
parente34bb3889082d6058b6368ba2d73dd68a9c764ab (diff)
downloadapp-manager-6543acee46ac0f16620cdbff89f2f45258535aac.tar.gz
app-manager-6543acee46ac0f16620cdbff89f2f45258535aac.tar.bz2
app-manager-6543acee46ac0f16620cdbff89f2f45258535aac.zip
Fix doxygen and param name mismatch
Change-Id: I40d50f43eafcff0126d4e11554de74e811d2ced6 Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
-rw-r--r--include/app_info.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/app_info.h b/include/app_info.h
index 190db03..1816243 100644
--- a/include/app_info.h
+++ b/include/app_info.h
@@ -82,7 +82,7 @@ extern "C" {
* Value related with this property should be one of "uiapp", "svcapp", "widgetapp"
* and "watchapp".
* @since_tizen 4.0
- * @see app_info_app_component_e
+ * @see app_info_app_component_type_e
* @see app_info_get_app_component_type()
*/
#define PACKAGE_INFO_PROP_APP_COMPONENT_TYPE "PACKAGE_INFO_PROP_APP_COMPONENT_TYPE"
@@ -291,15 +291,15 @@ int app_info_get_type(app_info_h app_info, char **type);
/**
* @brief Gets the application component type.
* @since_tizen 4.0
- * @param[in] app_info The application information
- * @param[out] component The application component type
+ * @param[in] app_info The application information
+ * @param[out] type The application component type
* @return @c 0 on success,
* otherwise a negative error value
* @retval #APP_MANAGER_ERROR_NONE Successful
* @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #APP_MANAGER_ERROR_IO_ERROR I/O error
- * @see PACKAGE_INFO_PROP_APP_COMPONENT_TYPE
- * @see app_info_app_component_type_e
+ * @see #PACKAGE_INFO_PROP_APP_COMPONENT_TYPE
+ * @see #app_info_app_component_type_e
*/
int app_info_get_app_component_type(app_info_h app_info, app_info_app_component_type_e *type);