Fix coding rule detected by coding rule checker
[platform/core/uifw/inputdelegator.git] / src / w-input-selector.cpp
index 4760a7a..f08b774 100755 (executable)
@@ -202,11 +202,9 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj,
                        string path_ic;
                        if(!strcmp(first_input_type, "input_voice")) {
                                path_ic = path + "images/w_mode_stt_ic.png";
-                       }
-                       else if(!strcmp(first_input_type, "input_emoticon")) {
+                       } else if (!strcmp(first_input_type, "input_emoticon")) {
                                path_ic = path + "images/Delta_w_mode_emoticon_ic.png";
-                       }
-                       else if(!strcmp(first_input_type, "input_keyboard")) {
+                       } else if (!strcmp(first_input_type, "input_keyboard")) {
                                path_ic = path + "images/w_mode_keyboard_ic.png";
                                evas_object_propagate_events_set(btn, EINA_FALSE);
                        }
@@ -218,11 +216,9 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj,
                        string path_ic;
                        if(!strcmp(second_input_type, "input_voice")) {
                                path_ic = path + "images/w_mode_stt_ic.png";
-                       }
-                       else if(!strcmp(second_input_type, "input_emoticon")) {
+                       } else if (!strcmp(second_input_type, "input_emoticon")) {
                                path_ic = path + "images/Delta_w_mode_emoticon_ic.png";
-                       }
-                       else if(!strcmp(second_input_type, "input_keyboard")) {
+                       } else if (!strcmp(second_input_type, "input_keyboard")) {
                                path_ic = path + "images/w_mode_keyboard_ic.png";
                                evas_object_propagate_events_set(btn, EINA_FALSE);
                        }
@@ -241,11 +237,9 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj,
                        evas_object_layer_set(btn, 32000);
                        if(!strcmp(first_input_type, "input_voice")) {
                                evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data);
-                       }
-                       else if(!strcmp(first_input_type, "input_emoticon")) {
+                       } else if (!strcmp(first_input_type, "input_emoticon")) {
                                evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data);
-                       }
-                       else if(!strcmp(first_input_type, "input_keyboard")) {
+                       } else if (!strcmp(first_input_type, "input_keyboard")) {
                                evas_object_propagate_events_set(btn, EINA_FALSE);
                                evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data);
                        }
@@ -253,11 +247,9 @@ static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj,
                        evas_object_layer_set(btn, 32000);
                        if(!strcmp(second_input_type, "input_voice")) {
                                evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data);
-                       }
-                       else if(!strcmp(second_input_type, "input_emoticon")) {
+                       } else if (!strcmp(second_input_type, "input_emoticon")) {
                                evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data);
-                       }
-                       else if(!strcmp(second_input_type, "input_keyboard")) {
+                       } else if (!strcmp(second_input_type, "input_keyboard")) {
                                evas_object_propagate_events_set(btn, EINA_FALSE);
                                evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data);
                        }
@@ -608,7 +600,7 @@ void _create_genlist_items(void* user_data)
                itc1->func.content_get = __ise_gl_2button_content_get;
                itc1->func.state_get = NULL;
                itc1->func.del = NULL;
-       }else{
+       } else {
                itc1->item_style = "3button";
                itc1->func.text_get = NULL;
                itc1->func.content_get = __ise_gl_3button_content_get;
@@ -726,7 +718,7 @@ void _app_service(app_control_h service, void* user_data)
                ret = app_control_get_extra_data_array(service, APP_CONTROL_DATA_INPUT_TYPE, &input_type_array, &input_type_array_len);
                g_input_type_data.input_type_array = input_type_array;
                g_input_type_data.input_type_array_len = input_type_array_len;
-       }else{
+       } else {
                ret = app_control_get_extra_data(service, APP_CONTROL_DATA_INPUT_TYPE, &context);
                if (ret == APP_CONTROL_ERROR_NONE) {
                        if (!strcmp(context, "input_voice")) {