From 82cb542511ffca74a44f0134061939bd8cfc3cbe Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Wed, 5 Apr 2017 18:19:45 +0900 Subject: [PATCH] Fix coding style Change-Id: I1ac18486d0a7c6874b5c43db8b963db512431960 Signed-off-by: Jihoon Kim --- src/ise.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ise.cpp b/src/ise.cpp index 6c297ef..d8a363a 100644 --- a/src/ise.cpp +++ b/src/ise.cpp @@ -897,7 +897,7 @@ SCLEventReturnType CUIEventCallback::on_event_key_clicked(SclUIEventDesc event_d create_setting_window(); } } else if (strcmp(event_desc.key_value, USER_KEYSTRING_OPTION) == 0) { - if (!option_window_is_available (OPTION_WINDOW_TYPE_NORMAL)) + if (!option_window_is_available(OPTION_WINDOW_TYPE_NORMAL)) ime_create_option_window(); ret = SCL_EVENT_DONE; } else if (strcmp(event_desc.key_value, USER_KEYSTRING_CLIPBOARD) == 0) { @@ -934,7 +934,7 @@ SCLEventReturnType CUIEventCallback::on_event_key_clicked(SclUIEventDesc event_d case KEY_TYPE_USER: if (strcmp(event_desc.key_value, USER_KEYSTRING_OPTION) == 0) { //open_option_window(NULL, ROTATION_TO_DEGREE(g_ui->get_rotation())); - if (!option_window_is_available (OPTION_WINDOW_TYPE_NORMAL)) + if (!option_window_is_available(OPTION_WINDOW_TYPE_NORMAL)) ime_create_option_window(); ret = SCL_EVENT_DONE; } else if (strcmp(event_desc.key_value, USER_KEYSTRING_CLIPBOARD) == 0) { -- 2.7.4