Fix coding style 21/84121/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 17 Aug 2016 00:14:31 +0000 (09:14 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 17 Aug 2016 00:14:31 +0000 (09:14 +0900)
Change-Id: Ibf3b58e01a615a27c23745a396f488cb48e128b6

src/ise-emoticon-mode.cpp
src/ise-stt-mode.cpp
src/ise-stt-option.cpp
src/ise.cpp

index 368ceaf..7ddb8f4 100644 (file)
@@ -221,8 +221,9 @@ void ise_show_emoticon_window(emoticon_group_t emoticon_group, const int screen_
     evas_object_size_hint_align_set(layout, EVAS_HINT_FILL, EVAS_HINT_FILL);
 
     int y = 0;
-    if (g_candidate && g_candidate->get_visible ())
-        y = g_candidate->get_height ();
+    if (g_candidate && g_candidate->get_visible())
+        y = g_candidate->get_height();
+
     evas_object_move(layout, 0, y);
 
     if (is_candidate_on) {
index 30ff032..f0bf11e 100644 (file)
@@ -81,5 +81,4 @@ void ise_show_stt_mode(Evas_Object *win)
 
 void ise_hide_stt_mode()
 {
-
 }
index 0c9b632..4b2941c 100644 (file)
@@ -187,7 +187,7 @@ char * get_stt_default_language()
 
     LOGD("language type (%d)", stt_lang);
 
-    switch(stt_lang) {
+    switch (stt_lang) {
         case STT_VOICE_N66_AUTO :
             {
                 stt_get_default_language(g_stt, &kbd_lang);
index 426931b..b8d6703 100644 (file)
@@ -1697,12 +1697,12 @@ static void update_recent_used_punctuation(const char * key_value)
     }
 }
 
-int main (int argc, char *argv[])
+int main(int argc, char *argv[])
 {
     try {
         g_core.run();
     } catch (...) {
-        LOGW ("Exception is thrown from g_core.run()!!!\n");
+        LOGW("Exception is thrown from g_core.run()!!!\n");
     }
 
     return 0;