From fdf6828b7e705ea058ca3ac6475d1d3ff53cd31f Mon Sep 17 00:00:00 2001 From: Rafael Antognolli Date: Mon, 4 Nov 2013 11:06:49 -0200 Subject: [PATCH] ecore/wayland: Move Ecore_Wl_Output to a private header. This is just not being used outside of ecore_wayland library, so just move it and nothing breaks. --- src/lib/ecore_wayland/Ecore_Wayland.h | 13 ------------- src/lib/ecore_wayland/ecore_wl_private.h | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/lib/ecore_wayland/Ecore_Wayland.h b/src/lib/ecore_wayland/Ecore_Wayland.h index d4efec94d0..bcb7141c38 100644 --- a/src/lib/ecore_wayland/Ecore_Wayland.h +++ b/src/lib/ecore_wayland/Ecore_Wayland.h @@ -96,19 +96,6 @@ struct _Ecore_Wl_Global struct wl_list link; }; -struct _Ecore_Wl_Output -{ - Ecore_Wl_Display *display; - struct wl_output *output; - Eina_Rectangle allocation; - int mw, mh; - int transform; - struct wl_list link; - - void (*destroy) (Ecore_Wl_Output *output, void *data); - void *data; -}; - struct _Ecore_Wl_Event_Mouse_In { int modifiers; diff --git a/src/lib/ecore_wayland/ecore_wl_private.h b/src/lib/ecore_wayland/ecore_wl_private.h index fa92e6d93e..69b2f95dcb 100644 --- a/src/lib/ecore_wayland/ecore_wl_private.h +++ b/src/lib/ecore_wayland/ecore_wl_private.h @@ -202,6 +202,19 @@ struct _Ecore_Wl_Input } repeat; }; +struct _Ecore_Wl_Output +{ + Ecore_Wl_Display *display; + struct wl_output *output; + Eina_Rectangle allocation; + int mw, mh; + int transform; + struct wl_list link; + + void (*destroy) (Ecore_Wl_Output *output, void *data); + void *data; +}; + struct _Ecore_Wl_Dnd { Ecore_Wl_Display *ewd;