diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2018-04-24 13:44:53 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2018-04-24 13:45:45 +0900 |
commit | 3e3462f0d35684e581ff78acfa871a60ff630bae (patch) | |
tree | 2fd5ae882b07a3c9e8ee3fb736363bd6de4e2131 /src/lib/elementary/efl_selection_manager.c | |
parent | 81bc0122ca93c8973a4889d205befc69008e7bd9 (diff) |
elm - sel manager - build on windows AND x11 now
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/efl_selection_manager.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_selection_manager.c b/src/lib/elementary/efl_selection_manager.c index da2f57a772..dd885d5cd9 100644 --- a/src/lib/elementary/efl_selection_manager.c +++ b/src/lib/elementary/efl_selection_manager.c | |||
@@ -105,7 +105,11 @@ _owner_change_check(Efl_Selection_Manager *manager, Efl_Object *owner, | |||
105 | i < (EFL_SELECTION_TYPE_CLIPBOARD + 1) | 105 | i < (EFL_SELECTION_TYPE_CLIPBOARD + 1) |
106 | ; i++) | 106 | ; i++) |
107 | { | 107 | { |
108 | #ifdef HAVE_ELEMENTARY_X | ||
108 | seat_sel2->sel_list[i].xwin = 0; | 109 | seat_sel2->sel_list[i].xwin = 0; |
110 | #elif defined (HAVE_ELEMENTARY_WIN32) | ||
111 | seat_sel2->sel_list[i].win = NULL; | ||
112 | #endif | ||
109 | seat_sel2->sel_list[i].active = EINA_FALSE; | 113 | seat_sel2->sel_list[i].active = EINA_FALSE; |
110 | } | 114 | } |
111 | } | 115 | } |