summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2018-05-18 14:50:37 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2018-05-18 06:09:00 +0000
commit88a8fd959ee7f6476b82f0a651f6c461acf0b716 (patch)
tree1adbefa252991269e14b912f807879deb1213ff7
parent9d61d314e2e73d045e8bdbd5ef58bf7c5ca6ff30 (diff)
downloadaul-1-88a8fd959ee7f6476b82f0a651f6c461acf0b716.tar.gz
aul-1-88a8fd959ee7f6476b82f0a651f6c461acf0b716.tar.bz2
aul-1-88a8fd959ee7f6476b82f0a651f6c461acf0b716.zip
Fix wrong descriptions
Change-Id: Ieb16f9bbcbaa05dd8f520addb945aa6d33f79f58 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--include/aul.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/aul.h b/include/aul.h
index fb26cfaf..f9f92968 100644
--- a/include/aul.h
+++ b/include/aul.h
@@ -533,7 +533,7 @@ int aul_launch_app_for_uid(const char *appid, bundle *kb, uid_t uid);
/**
* @par Description:
* This API launches application, as menu screen launches the app.
- * Thus, if the applocation is running, this API sends a RESUME event to the app.
+ * Thus, if the application is running, this API sends a RESUME event to the app.
* If the application is not running, this API launches the app.
* While the application is running, if the application cannot receive the RESUME event,
* AUL tries to raise the application's default window.
@@ -575,7 +575,7 @@ int aul_open_app(const char *appid);
/**
* @par Description:
* This API launches application, as menu screen launches the app.
- * Thus, if the applocation is running, this API sends a RESUME event to the app.
+ * Thus, if the application is running, this API sends a RESUME event to the app.
* If the application is not running, this API launches the app.
* While the application is running, if the application cannot receive the RESUME event,
* AUL tries to raise the application's default window.
@@ -606,7 +606,7 @@ int aul_open_app_for_uid(const char *appid, uid_t uid);
* @par Description:
* This API trigger to resume application
* If the application is running, this API send a resume event to the App.
- * If the application is not running, this API returns fail.
+ * If the application is not running, this API launches the app.
* Although the application is running, if the application cannot receive resume event,
* AUL try to raise the application's default windows.
* @par Purpose:
@@ -623,9 +623,11 @@ int aul_open_app_for_uid(const char *appid, uid_t uid);
* @retval AUL_R_ERROR - general error
*
* @see
- * aul_launch_app, aul_app_is_running, aul_resume_pid
+ * aul_launch_app(), aul_app_is_running(), aul_resume_pid()
+ *
* @deprecated
- * This function will be deprecated. Use aul_open_add() instead.
+ * This function will be deprecated. Use aul_open_app() instead of this function.
+ *
* @code
* #include <aul.h>
* #include <bundle.h>
@@ -651,7 +653,7 @@ int aul_resume_app(const char *appid);
* @par Description:
* This API trigger to resume application
* If the application is running, this API send a resume event to the App.
- * If the application is not running, this API returns fail.
+ * If the application is not running, this API launches the app.
* Although the application is running, if the application cannot receive resume event,
* AUL try to raise the application's default windows.
* @par Purpose: