From: Sungmin Kwak Date: Tue, 21 Apr 2015 00:59:15 +0000 (+0900) Subject: IME Error code is given X-Git-Tag: submit/tizen/20150612.024017~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63b2ece8cbeeb441b3c6e302bfadd7e37616c116;p=platform%2Fcore%2Fapi%2Finputmethod.git IME Error code is given Change-Id: Iba978948da3b2709d6b94977c9507c65d6f8c239 --- diff --git a/include/inputmethod.h b/include/inputmethod.h index f7d08ef..bd611e0 100644 --- a/include/inputmethod.h +++ b/include/inputmethod.h @@ -47,9 +47,9 @@ typedef enum IME_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */ IME_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */ IME_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permission denied */ - IME_ERROR_NO_CALLBACK_FUNCTION = TIZEN_ERROR_UIX_CLASS | 0x0001, /**< Necessary callback function is not set */ - IME_ERROR_NOT_RUNNING = TIZEN_ERROR_UIX_CLASS | 0x0002, /**< IME main loop isn't started yet */ - IME_ERROR_OPERATION_FAILED = TIZEN_ERROR_UIX_CLASS | 0x0003, /**< Operation failed */ + IME_ERROR_NO_CALLBACK_FUNCTION = TIZEN_ERROR_IME | 0x0001, /**< Necessary callback function is not set */ + IME_ERROR_NOT_RUNNING = TIZEN_ERROR_IME | 0x0002, /**< IME main loop isn't started yet */ + IME_ERROR_OPERATION_FAILED = TIZEN_ERROR_IME | 0x0003, /**< Operation failed */ } ime_error_e; /** diff --git a/src/inputmethod.cpp b/src/inputmethod.cpp index 438293d..6919b79 100644 --- a/src/inputmethod.cpp +++ b/src/inputmethod.cpp @@ -14,9 +14,6 @@ * limitations under the License. */ -#define Uses_SCIM_ATTRIBUTE - -#include #include #include #include