fix coding style
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 25 Mar 2013 05:16:05 +0000 (14:16 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 26 Mar 2013 07:18:56 +0000 (16:18 +0900)
Change-Id: If418989265f8dddc111e825961fe3ce84f47a716

ism/extras/efl_immodule/isf_imf_context.cpp
ism/extras/efl_immodule/isf_imf_control_ui.cpp

index de96d5a664bac019edff61b0be23a5ed778b699f..de01a71f9482d51ed837c59df89c583d6402e7cc 100644 (file)
@@ -441,7 +441,7 @@ _key_down_cb (void *data, int type, void *event)
     if (!ev || !_focused_ic || !_focused_ic->ctx) return ECORE_CALLBACK_RENEW;
 
     if (!strcmp (ev->keyname, KEY_END) &&
-        ecore_imf_context_input_panel_state_get(_focused_ic->ctx) != ECORE_IMF_INPUT_PANEL_STATE_HIDE) {
+        ecore_imf_context_input_panel_state_get (_focused_ic->ctx) != ECORE_IMF_INPUT_PANEL_STATE_HIDE) {
         LOGD ("END key is pressed\n");
         return ECORE_CALLBACK_CANCEL;
     }
@@ -458,7 +458,7 @@ _key_up_cb (void *data, int type, void *event)
     if (!ev || !_focused_ic || !_focused_ic->ctx) return ECORE_CALLBACK_RENEW;
 
     if (!strcmp (ev->keyname, KEY_END) &&
-        ecore_imf_context_input_panel_state_get(_focused_ic->ctx) != ECORE_IMF_INPUT_PANEL_STATE_HIDE) {
+        ecore_imf_context_input_panel_state_get (_focused_ic->ctx) != ECORE_IMF_INPUT_PANEL_STATE_HIDE) {
         LOGD ("END key is released\n");
         isf_imf_context_input_panel_instant_hide (_focused_ic->ctx);
         return ECORE_CALLBACK_CANCEL;
@@ -550,14 +550,14 @@ autoperiod_insert (Ecore_IMF_Context *ctx)
 
     if (!ctx) return;
 
-    Ecore_IMF_Input_Panel_Layout layout = ecore_imf_context_input_panel_layout_get(ctx);
+    Ecore_IMF_Input_Panel_Layout layout = ecore_imf_context_input_panel_layout_get (ctx);
     if (layout != ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL)
         return;
 
     if (autoperiod_allow == EINA_FALSE)
         return;
 
-    if ((ecore_time_get() - space_key_time) > DOUBLE_SPACE_INTERVAL)
+    if ((ecore_time_get () - space_key_time) > DOUBLE_SPACE_INTERVAL)
         goto done;
 
     ecore_imf_context_surrounding_get (ctx, &markup_str, &cursor_pos);
index cacf1963142a0958b4890caf90d5c295d6a2f65e..b63878fb29e3a60a0ec770a844c9c4b72dc643d2 100644 (file)
@@ -860,7 +860,7 @@ void isf_imf_context_input_panel_send_will_hide_ack ()
         _isf_imf_context_init ();
     }
 
-    if (_conformant_get()) {
+    if (_conformant_get ()) {
         if (conformant_reset_done && received_will_hide_event) {
             _isf_imf_context_input_panel_send_will_hide_ack ();
             conformant_reset_done = EINA_FALSE;
@@ -873,7 +873,7 @@ void isf_imf_context_input_panel_send_will_hide_ack ()
 }
 
 /**
- * process command message, ISM_TRANS_CMD_ISE_PANEL_SHOWED of ecore_ise_process_event()
+ * process command message, ISM_TRANS_CMD_ISE_PANEL_SHOWED of ecore_ise_process_event ()
  */
 static bool _process_ise_panel_showed (void)
 {
@@ -890,7 +890,7 @@ static bool _process_ise_panel_showed (void)
 }
 
 /**
- * process command message, ISM_TRANS_CMD_ISE_PANEL_HIDED of ecore_ise_process_event()
+ * process command message, ISM_TRANS_CMD_ISE_PANEL_HIDED of ecore_ise_process_event ()
  */
 static bool _process_ise_panel_hided (void)
 {
@@ -910,7 +910,7 @@ static bool _process_ise_panel_hided (void)
 }
 
 /**
- * process command message, ISM_TRANS_CMD_UPDATE_ISE_INPUT_CONTEXT of gtk_ise_process_event()
+ * process command message, ISM_TRANS_CMD_UPDATE_ISE_INPUT_CONTEXT of gtk_ise_process_event ()
  */
 static bool _process_update_input_context (Transaction &trans)
 {