summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2013-11-13 12:34:30 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2013-11-13 12:34:30 +0100
commit293b5241ed78916dd55ff4a2bbec3df95654a633 (patch)
tree69c70d6eb9c5668b35364c6f27f9ec9987fb77fd
parent88bab55551b7631cd048f851291af150218e0c86 (diff)
downloadenlightenment-devs/stefan/for-e19.tar.gz
Update e_win for latest ecore_wayland changes.devs/stefan/for-e19
This fixes a build break which came from some changes in the ecore_wayland code. More specific the Ecore_Window struct internals are no longer accessible. For surface_id in e_win we use the getter function from now on.
-rw-r--r--src/bin/e_win.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/e_win.c b/src/bin/e_win.c
index 731d69979b..c3c4c62066 100644
--- a/src/bin/e_win.c
+++ b/src/bin/e_win.c
@@ -351,7 +351,8 @@ e_win_show(E_Win *win)
Ecore_Wl_Window *wl_win;
wl_win = ecore_evas_wayland_window_get(win->ecore_evas);
- win->client = e_client_new(win->comp, e_pixmap_new(E_PIXMAP_TYPE_WL, wl_win->surface_id), 1, 1);
+ win->client = e_client_new(win->comp, e_pixmap_new(E_PIXMAP_TYPE_WL,
+ ecore_wl_window_surface_id_get(wl_win)), 1, 1);
}
else
#endif