evas - removed unncessary header include
authorChunEon Park <hermet@hermet.pe.kr>
Tue, 29 Apr 2014 06:44:29 +0000 (15:44 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Tue, 29 Apr 2014 06:44:29 +0000 (15:44 +0900)
it's already done in evas_common_private.h. no need it in each file.

23 files changed:
src/lib/evas/canvas/common_interfaces.c
src/lib/evas/canvas/evas_3d_camera.c
src/lib/evas/canvas/evas_3d_light.c
src/lib/evas/canvas/evas_3d_material.c
src/lib/evas/canvas/evas_3d_mesh.c
src/lib/evas/canvas/evas_3d_node.c
src/lib/evas/canvas/evas_3d_object.c
src/lib/evas/canvas/evas_3d_scene.c
src/lib/evas/canvas/evas_3d_texture.c
src/lib/evas/canvas/evas_common_interface.c
src/lib/evas/canvas/evas_object_box.c
src/lib/evas/canvas/evas_object_grid.c
src/lib/evas/canvas/evas_object_image.c
src/lib/evas/canvas/evas_object_line.c
src/lib/evas/canvas/evas_object_main.c
src/lib/evas/canvas/evas_object_polygon.c
src/lib/evas/canvas/evas_object_rectangle.c
src/lib/evas/canvas/evas_object_smart.c
src/lib/evas/canvas/evas_object_table.c
src/lib/evas/canvas/evas_object_text.c
src/lib/evas/canvas/evas_object_textblock.c
src/lib/evas/canvas/evas_object_textgrid.c
src/lib/evas/canvas/evas_out.c

index faa46c5..21af58b 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 Eina_Hash* signals_hash_table = NULL;
 
 static const Eo_Event_Description *_evas_clickable_interface_event_desc[];
@@ -58,4 +56,4 @@ _evas_signal_interface_class_destructor(Eo_Class *klass EINA_UNUSED)
 #include "canvas/evas_clickable_interface.eo.c"
 #include "canvas/evas_scrollable_interface.eo.c"
 #include "canvas/evas_selectable_interface.eo.c"
-#include "canvas/evas_zoomable_interface.eo.c"
\ No newline at end of file
+#include "canvas/evas_zoomable_interface.eo.c"
index 308c083..896d563 100644 (file)
@@ -1,11 +1,8 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_CAMERA_CLASS
 
-
 static Eina_Bool
 _camera_node_change_notify(const Eina_Hash *hash EINA_UNUSED, const void *key,
                         void *data EINA_UNUSED, void *fdata)
index a917661..0e8600d 100644 (file)
@@ -1,17 +1,10 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include <math.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_LIGHT_CLASS
 
-
 static Eina_Bool
 _light_node_change_notify(const Eina_Hash *hash EINA_UNUSED, const void *key,
                         void *data EINA_UNUSED, void *fdata)
index d706f23..99d28f3 100644 (file)
@@ -1,13 +1,7 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_MATERIAL_CLASS
 
 static Eina_Bool
index 4007145..e49b9a8 100644 (file)
@@ -1,13 +1,7 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_MESH_CLASS
 
 static Evas_3D_Mesh_Frame *
index b978da8..27feb34 100644 (file)
@@ -1,13 +1,7 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_NODE_CLASS
 #define MY_CLASS_NAME "Evas_3D_Node"
 
index 0ef842c..8116d09 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_OBJECT_CLASS
 
 EOLIAN static void
index 966da9c..ddff5be 100644 (file)
@@ -1,13 +1,7 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_SCENE_CLASS
 
 void
index 9cfaace..eae8256 100644 (file)
@@ -1,13 +1,7 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_3D_TEXTURE_CLASS
 
 static inline void
index 2b205ac..eb90b0b 100644 (file)
@@ -1,6 +1,3 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
-
-#include "Eo.h"
-
-#include "canvas/evas_common_interface.eo.c"
\ No newline at end of file
+#include "canvas/evas_common_interface.eo.c"
index 903578f..f4d99e1 100644 (file)
@@ -5,8 +5,6 @@
 # undef remove
 #endif
 
-#include <Eo.h>
-
 #define MY_CLASS_NAME "Evas_Box"
 #define MY_CLASS_NAME_LEGACY "Evas_Object_Box"
 
index 87f21e5..7af3ad9 100644 (file)
@@ -2,8 +2,6 @@
 #include "evas_private.h"
 #include <errno.h>
 
-#include <Eo.h>
-
 #define MY_CLASS EVAS_OBJ_GRID_CLASS
 
 typedef struct _Evas_Grid_Data              Evas_Grid_Data;
index 7a82c1e..062da1c 100644 (file)
@@ -1,7 +1,3 @@
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
 #include <stdlib.h>
 #include <sys/types.h>
 #include <unistd.h>
@@ -20,8 +16,6 @@
 #include "../common/evas_convert_yuv.h"
 #include "evas_filter.h"
 
-#include <Eo.h>
-
 #define MY_CLASS EVAS_OBJ_IMAGE_CLASS
 
 #define MY_CLASS_NAME "Evas_Image"
index 5968d8a..247777a 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_LINE_CLASS
 
 /* private magic number for line objects */
index 020914c..15a3a4e 100644 (file)
@@ -3,8 +3,6 @@
 
 EVAS_MEMPOOL(_mp_sh);
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_CLASS
 
 #define MY_CLASS_NAME "Evas_Object"
index d38c9c8..576de20 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_POLYGON_CLASS
 
 /* private magic number for polygon objects */
index 6903b3a..4859f82 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_RECTANGLE_CLASS
 
 /* private magic number for rectangle objects */
index d6c3ba2..8e94449 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h"
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_SMART_CLASS
 
 #define MY_CLASS_NAME "Evas_Smart"
index 057836e..969a5eb 100644 (file)
@@ -2,8 +2,6 @@
 #include "evas_private.h"
 #include <errno.h>
 
-#include <Eo.h>
-
 #define MY_CLASS EVAS_OBJ_TABLE_CLASS
 
 #define MY_CLASS_NAME "Evas_Table"
index 3c5b7f0..8e960da 100644 (file)
@@ -2,8 +2,6 @@
 #include "evas_private.h"
 #include "evas_filter.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_TEXT_CLASS
 
 #define MY_CLASS_NAME "Evas_Text"
index f6042ae..14565e3 100644 (file)
@@ -65,8 +65,6 @@
 #include "evas_private.h"
 #include <stdlib.h>
 
-#include "Eo.h"
-
 //#define LYDBG(f, args...) printf(f, ##args)
 #define LYDBG(f, args...)
 
index 6af6a89..5eeb8fc 100644 (file)
@@ -1,8 +1,6 @@
 #include "evas_common_private.h" /* Includes evas_bidi_utils stuff. */
 #include "evas_private.h"
 
-#include "Eo.h"
-
 #define MY_CLASS EVAS_OBJ_TEXTGRID_CLASS
 
 #define MY_CLASS_NAME "Evas_Textgrid"
index a77bed0..9ef82cf 100644 (file)
@@ -5,8 +5,6 @@
 #include "evas_cs2_private.h"
 #endif
 
-#include <Eo.h>
-
 #define MY_CLASS EVAS_OUT_CLASS
 typedef struct _Evas_Out_Data Evas_Out_Data;
 struct _Evas_Out_Data