diff options
author | Hwankyu Jhun <h.jhun@samsung.com> | 2016-08-08 11:35:34 +0900 |
---|---|---|
committer | Hyunho Kang <hhstark.kang@samsung.com> | 2016-08-08 19:30:50 +0900 |
commit | 131dfa63ae4cd8d6decac5a1e8409f8abd53b715 (patch) | |
tree | 3d0ca394be58fd612bfbf91130f20d2bdb261001 /include | |
parent | 6800f44d4a319011b58a9710ef2dcfe064ea4a55 (diff) | |
download | widget-service-131dfa63ae4cd8d6decac5a1e8409f8abd53b715.tar.gz widget-service-131dfa63ae4cd8d6decac5a1e8409f8abd53b715.tar.bz2 widget-service-131dfa63ae4cd8d6decac5a1e8409f8abd53b715.zip |
Fix the description about WIDGET_ERROR_MAX_EXCEEDsubmit/tizen/20160809.051427accepted/tizen/wearable/20160809.232706accepted/tizen/tv/20160809.232500accepted/tizen/mobile/20160809.232343accepted/tizen/ivi/20160809.232611accepted/tizen/common/20160809.183933
Change-Id: I22a0b71eab545f65167e2fba421d91f7a62c81c8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/widget_errno.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/widget_errno.h b/include/widget_errno.h index d5756e5..c4958d2 100644 --- a/include/widget_errno.h +++ b/include/widget_errno.h @@ -43,8 +43,7 @@ extern "C" { * @brief Enumeration for the result status of widget operation. * @since_tizen 2.3.1 */ -typedef enum widget_error -{ +typedef enum widget_error { WIDGET_ERROR_NONE = TIZEN_ERROR_NONE, /**< Operation is successfully completed */ WIDGET_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid function parameter */ WIDGET_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */ @@ -60,7 +59,7 @@ typedef enum widget_error WIDGET_ERROR_ALREADY_STARTED = TIZEN_ERROR_WIDGET | 0x0004, /**< Operation is already started */ WIDGET_ERROR_NOT_EXIST = TIZEN_ERROR_WIDGET | 0x0008, /**< Not exists */ WIDGET_ERROR_DISABLED = TIZEN_ERROR_WIDGET | 0x0010, /**< Disabled */ - WIDGET_ERROR_MAX_EXCEED = TIZEN_ERROR_WIDGET | 0x0011, /* *< Max instance exceed */ + WIDGET_ERROR_MAX_EXCEEDED = TIZEN_ERROR_WIDGET | 0x0011, /**< Maximum number of instances exceeded (Since 3.0) */ } widget_error_e; /** |