fix build break when wayland2 is not enabled 77/210777/3 submit/tizen/20190729.064428
authorsubhransu mohanty <sub.mohanty@samsung.com>
Wed, 24 Jul 2019 10:37:09 +0000 (19:37 +0900)
committersubhransu mohanty <sub.mohanty@samsung.com>
Mon, 29 Jul 2019 00:49:09 +0000 (09:49 +0900)
the structure was defined inside LEMENTARY_WL2 macro
move it outside.

Change-Id: I9de4e185ed1d562d9aa94e8257eaf3e618d39b49

src/lib/elementary/efl_ui_win.c

index 11ac816..5a98ace 100644 (file)
@@ -3921,6 +3921,14 @@ _elm_ee_wlwin_get(const Ecore_Evas *ee)
    return NULL;
 }
 
+// TIZEN_ONLY(20150722): added signal for aux_hint(auxiliary hint)
+struct _Elm_Win_Aux_Message
+{
+   const char *key;
+   const char *val;
+   Eina_List *options;
+};
+
 #ifdef HAVE_ELEMENTARY_WL2
 static void
 _elm_win_wlwindow_get(Efl_Ui_Win_Data *sd)
@@ -4060,14 +4068,6 @@ _elm_win_wlwin_type_update(Efl_Ui_Win_Data *sd)
 }
 //
 
-// TIZEN_ONLY(20150722): added signal for aux_hint(auxiliary hint)
-struct _Elm_Win_Aux_Message
-{
-   const char *key;
-   const char *val;
-   Eina_List *options;
-};
-
 static Eina_Bool
 _elm_win_wl_aux_message(void *data, int type EINA_UNUSED, void *event)
 {