Remove wearable API version notation 96/302296/2
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Dec 2023 07:34:19 +0000 (16:34 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Dec 2023 07:41:19 +0000 (16:41 +0900)
Change-Id: If5d1edde723e43ad8d2b5f86c37f9425f7794f55
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
include/inputmethod_manager.h

index 615aaa759101cabac55ee4fa2ef3d3bef51386ac..5049f60570677505a8f971c39125b675f7a9fc7f 100755 (executable)
@@ -37,7 +37,7 @@ extern "C" {
 
 /**
  * @brief Enumeration for input method manager function error.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        IME_MANAGER_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -50,7 +50,7 @@ typedef enum {
 /**
  * @brief Requests to open the installed IME list menu.
  * @details This function provides the installed IME list menu for the IME developers who might want to open it to enable their IME.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @privlevel public
  * @privilege %http://tizen.org/privilege/imemanager
  * @return @c 0 on success,
@@ -66,7 +66,7 @@ int ime_manager_show_ime_list(void);
 /**
  * @brief Requests to open the IME selector menu.
  * @details This function provides the IME selector menu for the IME or other application developers who might want to change the default IME.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @privlevel public
  * @privilege %http://tizen.org/privilege/imemanager
  * @return @c 0 on success,
@@ -82,7 +82,7 @@ int ime_manager_show_ime_selector(void);
 /**
  * @brief Checks if the specific IME is enabled or disabled in the system keyboard setting.
  * @details The IME developers can use this function to check their IME is enabled or not.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @privlevel public
  * @privilege %http://tizen.org/privilege/imemanager
  * @param[in] app_id The application ID of the IME
@@ -100,7 +100,7 @@ int ime_manager_is_ime_enabled(const char *app_id, bool *enabled);
 
 /**
  * @brief Checks which IME is the current activated (selected) IME.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  * @privlevel public
  * @privilege %http://tizen.org/privilege/imemanager
  * @remarks @a app_id must be released using free().