From: Gwanglim Lee Date: Wed, 7 Jan 2015 01:59:15 +0000 (+0900) Subject: Use constant value temporarily instead of TIZEN_ERROR_EFL_UTIL not applied X-Git-Tag: submit/tizen/20150107.020040^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa47f02bd26c3a7e5934a248daaa659157ad3cca;p=platform%2Fcore%2Fapi%2Fefl-util.git Use constant value temporarily instead of TIZEN_ERROR_EFL_UTIL not applied Change-Id: Iaa346a253f727466649c48f7deb3df2d79af0f32 --- diff --git a/include/efl_util.h b/include/efl_util.h index 3a20e65..fe01c53 100644 --- a/include/efl_util.h +++ b/include/efl_util.h @@ -167,7 +167,8 @@ typedef enum EFL_UTIL_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */ EFL_UTIL_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */ EFL_UTIL_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permisson denied */ - EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE = TIZEN_ERROR_EFL_UTIL | 0x01 /**< Window type not supported */ + EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE = -0x02800000 | 0x01 /**< Window type not supported */ + //EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE = TIZEN_ERROR_EFL_UTIL | 0x01 /**< Window type not supported */ } efl_util_error_e; // TODO: are we going to have more states than on/off shouldn't we move it to a bool in the API's