Fix typos 34/280134/1
authorInHong Han <inhong1.han@samsung.com>
Wed, 24 Aug 2022 07:58:23 +0000 (16:58 +0900)
committerInHong Han <inhong1.han@samsung.com>
Wed, 24 Aug 2022 07:58:23 +0000 (16:58 +0900)
Change-Id: I2e573166a4d4231a67bf870d6fbf98c28ee861bf

ism/src/isf_control.cpp
ism/src/isf_control.h

index 1c31990..27f478b 100644 (file)
@@ -91,7 +91,7 @@ static bool app_control_launch (const char *app_id, app_control_launch_mode_e mo
     return (ret == APP_CONTROL_ERROR_NONE);
 }
 
-static int open_ime_optipn_window(app_control_launch_mode_e mode)
+static int open_ime_option_window(app_control_launch_mode_e mode)
 {
     IMControlClient imcontrol_client;
     int ret = 0;
@@ -343,7 +343,7 @@ EXAPI int isf_control_get_ise_count (ISE_TYPE_T type)
 
 EXAPI int isf_control_show_ise_option_window (void)
 {
-    return open_ime_optipn_window (APP_CONTROL_LAUNCH_MODE_GROUP);
+    return open_ime_option_window (APP_CONTROL_LAUNCH_MODE_GROUP);
 }
 
 EXAPI int isf_control_get_all_ime_info (ime_info_s **info)
@@ -434,12 +434,12 @@ EXAPI int isf_control_get_ime_info (int index, ime_info_s **info)
 
 EXAPI int isf_control_open_ime_option_window (void)
 {
-    return open_ime_optipn_window (APP_CONTROL_LAUNCH_MODE_GROUP);
+    return open_ime_option_window (APP_CONTROL_LAUNCH_MODE_GROUP);
 }
 
-EXAPI int isf_control_open_ime_optipn_window_with_single_mode (void)
+EXAPI int isf_control_open_ime_option_window_with_single_mode (void)
 {
-    return open_ime_optipn_window (APP_CONTROL_LAUNCH_MODE_SINGLE);
+    return open_ime_option_window (APP_CONTROL_LAUNCH_MODE_SINGLE);
 }
 
 EXAPI int isf_control_resume_ime_option_window (void)
index c079449..b1fdc2b 100644 (file)
@@ -250,7 +250,7 @@ int isf_control_open_ime_option_window (void);
  *
  * @pre The availability of IME option can be found using isf_control_get_all_ime_info() and isf_control_get_active_ime() functions.
  */
-int isf_control_open_ime_optipn_window_with_single_mode (void);
+int isf_control_open_ime_option_window_with_single_mode (void);
 
 /**
  * @brief Requests to resume the current IME's option window.