summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/widget_errno.h5
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;
/**