antognolli pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=fdf6828b7e705ea058ca3ac6475d1d3ff53cd31f

commit fdf6828b7e705ea058ca3ac6475d1d3ff53cd31f
Author: Rafael Antognolli <rafael.antogno...@intel.com>
Date:   Mon Nov 4 11:06:49 2013 -0200

    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 d4efec9..bcb7141 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 fa92e6d..69b2f95 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;

-- 


Reply via email to