ecore-evas-wayland: Minor formatting fix
authorChristopher Michael <cp.michael@samsung.com>
Tue, 22 Oct 2019 14:06:23 +0000 (10:06 -0400)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Nov 2019 02:20:38 +0000 (11:20 +0900)
NB: No functional changes

src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c

index f624ecd..5647918 100755 (executable)
@@ -1727,101 +1727,101 @@ _ecore_evas_wl_common_init(void)
      return _ecore_evas_wl_init_count;
 
    _ecore_evas_wl_event_hdls = eina_array_new(10);
+
    h = ecore_event_handler_add(ECORE_EVENT_MOUSE_IN,
                              _ecore_evas_wl_common_cb_mouse_in, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_EVENT_MOUSE_OUT,
-                             _ecore_evas_wl_common_cb_mouse_out, NULL);
+
+   h = ecore_event_handler_add(ECORE_EVENT_MOUSE_OUT,
+                               _ecore_evas_wl_common_cb_mouse_out, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_FOCUS_IN,
-                             _ecore_evas_wl_common_cb_focus_in, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_FOCUS_IN,
+                               _ecore_evas_wl_common_cb_focus_in, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_FOCUS_OUT,
-                             _ecore_evas_wl_common_cb_focus_out, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_FOCUS_OUT,
+                               _ecore_evas_wl_common_cb_focus_out, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_CONFIGURE,
-                             _ecore_evas_wl_common_cb_window_configure, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_CONFIGURE,
+                               _ecore_evas_wl_common_cb_window_configure, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(_ecore_wl2_event_window_www,
-                             _ecore_evas_wl_common_cb_www, NULL);
+
+   h = ecore_event_handler_add(_ecore_wl2_event_window_www,
+                               _ecore_evas_wl_common_cb_www, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(_ecore_wl2_event_window_www_drag,
-                             _ecore_evas_wl_common_cb_www_drag, NULL);
+
+   h = ecore_event_handler_add(_ecore_wl2_event_window_www_drag,
+                               _ecore_evas_wl_common_cb_www_drag, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_DISCONNECT,
-                             _ecore_evas_wl_common_cb_disconnect, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_DISCONNECT,
+                               _ecore_evas_wl_common_cb_disconnect, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_GLOBAL_ADDED,
-                             _ecore_evas_wl_common_cb_global_added, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_GLOBAL_ADDED,
+                               _ecore_evas_wl_common_cb_global_added, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_GLOBAL_REMOVED,
-                             _ecore_evas_wl_common_cb_global_removed, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_GLOBAL_REMOVED,
+                               _ecore_evas_wl_common_cb_global_removed, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_SEAT_NAME_CHANGED,
-                             _ecore_evas_wl_common_cb_seat_name_changed, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_SEAT_NAME_CHANGED,
+                               _ecore_evas_wl_common_cb_seat_name_changed, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_SEAT_CAPABILITIES_CHANGED,
-                             _ecore_evas_wl_common_cb_seat_capabilities_changed,
-                             NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_SEAT_CAPABILITIES_CHANGED,
+                               _ecore_evas_wl_common_cb_seat_capabilities_changed,
+                               NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_CONFIGURE_COMPLETE,
-                             _ecore_evas_wl_common_cb_window_configure_complete,
-                             NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_CONFIGURE_COMPLETE,
+                               _ecore_evas_wl_common_cb_window_configure_complete,
+                               NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_ROTATE,
-                             _ecore_evas_wl_common_cb_window_rotate, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_ROTATE,
+                               _ecore_evas_wl_common_cb_window_rotate, NULL);
+   eina_array_push(_ecore_evas_wl_event_hdls, h);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_AUX_HINT_ALLOWED,
+                               _ecore_evas_wl_common_cb_aux_hint_allowed, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_AUX_HINT_ALLOWED,
-                             _ecore_evas_wl_common_cb_aux_hint_allowed, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_AUX_HINT_SUPPORTED,
+                               _ecore_evas_wl_common_cb_aux_hint_supported, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_AUX_HINT_SUPPORTED,
-                             _ecore_evas_wl_common_cb_aux_hint_supported, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_ICONIFY_STATE_CHANGE,
+                               _ecore_evas_wl_common_cb_iconify_state_change, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_ICONIFY_STATE_CHANGE,
-                             _ecore_evas_wl_common_cb_iconify_state_change, NULL);
+
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_AUX_MESSAGE,
+                               _ecore_evas_wl_common_cb_aux_message, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_AUX_MESSAGE,
-                             _ecore_evas_wl_common_cb_aux_message, NULL);
+
    // TIZEN_ONLY(20150703) : support conformant
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_CONFORMANT_CHANGE,
-                             _ecore_evas_wl_common_cb_conformant_change, NULL);
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_CONFORMANT_CHANGE,
+                               _ecore_evas_wl_common_cb_conformant_change, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
    //
    // TIZEN_ONLY(20171109): support a tizen_input_device_manager interface
-   h =
-     ecore_event_handler_add(ECORE_EVENT_DEVICE_ADD,
-                             _ecore_evas_wl_common_cb_tizen_device_add, NULL);
+   h = ecore_event_handler_add(ECORE_EVENT_DEVICE_ADD,
+                               _ecore_evas_wl_common_cb_tizen_device_add, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
-   h =
-     ecore_event_handler_add(ECORE_EVENT_DEVICE_DEL,
-                             _ecore_evas_wl_common_cb_tizen_device_del, NULL);
+   h = ecore_event_handler_add(ECORE_EVENT_DEVICE_DEL,
+                               _ecore_evas_wl_common_cb_tizen_device_del, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
    //
    // TIZEN_ONLY(20160120): support visibility_change event
-   h =
-     ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_VISIBILITY_CHANGE,
-                             _ecore_evas_wl_common_cb_window_visibility_change, NULL);
+   h = ecore_event_handler_add(ECORE_WL2_EVENT_WINDOW_VISIBILITY_CHANGE,
+                               _ecore_evas_wl_common_cb_window_visibility_change, NULL);
    eina_array_push(_ecore_evas_wl_event_hdls, h);
    //
 
+
    ecore_event_evas_init();
 
    return _ecore_evas_wl_init_count;