diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-04 13:48:57 -0200 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-04 13:50:04 -0200 |
commit | 18ef47c173205e24a076e2d78ff3ade0efe6a5de (patch) | |
tree | bbf0e8832eabdece04493c5bc7573b5e85fd39eb /src/lib/ecore_wayland/ecore_wl_private.h | |
parent | 5ec3ba041d49c4800d9a97db0770977661005e06 (diff) |
ecore/wayland: Use eina_inlist instead of wl_list for globals.
Since we are allocating this list and returning it, let's make it more
EFL-like.
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wayland/ecore_wl_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_wayland/ecore_wl_private.h b/src/lib/ecore_wayland/ecore_wl_private.h index 69b2f95dcb..0127b448f8 100644 --- a/src/lib/ecore_wayland/ecore_wl_private.h +++ b/src/lib/ecore_wayland/ecore_wl_private.h | |||
@@ -74,7 +74,7 @@ struct _Ecore_Wl_Display | |||
74 | 74 | ||
75 | struct wl_list inputs; | 75 | struct wl_list inputs; |
76 | struct wl_list outputs; | 76 | struct wl_list outputs; |
77 | struct wl_list globals; /** @since 1.7.6 */ | 77 | Eina_Inlist *globals; /** @since 1.7.6 */ |
78 | 78 | ||
79 | Eina_Bool init_done; | 79 | Eina_Bool init_done; |
80 | 80 | ||