Fix the description about WIDGET_ERROR_MAX_EXCEED 24/82824/2 accepted/tizen/common/20160809.183933 accepted/tizen/ivi/20160809.232611 accepted/tizen/mobile/20160809.232343 accepted/tizen/tv/20160809.232500 accepted/tizen/wearable/20160809.232706 submit/tizen/20160809.051427
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 8 Aug 2016 02:35:34 +0000 (11:35 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Mon, 8 Aug 2016 10:30:50 +0000 (19:30 +0900)
Change-Id: I22a0b71eab545f65167e2fba421d91f7a62c81c8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
include/widget_errno.h

index d5756e536878caac8aea3f4822805fdf436e9532..c4958d24cebd32555b7817b280e717af7a6281b9 100644 (file)
@@ -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;
 
 /**