Enlightenment CVS committal Author : kwo Project : e16 Module : e
Dir : e16/e/src Modified Files: E.h buttons.h coords.c desktops.c desktops.h ecompmgr.c ecompmgr.h edge.c eobj.c ewin-ops.c ewins.c ewins.h hiwin.c iconify.c ipc.c menus.c misc.c progress.c slideout.c stacking.c startup.c tooltips.c Log Message: Remove eobj.h from E.h, include where needed. =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/E.h,v retrieving revision 1.491 retrieving revision 1.492 diff -u -3 -r1.491 -r1.492 --- E.h 10 Sep 2005 21:24:26 -0000 1.491 +++ E.h 18 Sep 2005 06:35:37 -0000 1.492 @@ -157,8 +157,6 @@ #define N_(String) (String) #endif -#include "eobj.h" - #ifndef MAX #define MAX(a,b) ((a)>(b)?(a):(b)) #endif =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/buttons.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- buttons.h 4 Sep 2005 07:27:18 -0000 1.3 +++ buttons.h 18 Sep 2005 06:35:37 -0000 1.4 @@ -25,6 +25,8 @@ #ifndef _BUTTONS_H_ #define _BUTTONS_H_ +#include "eobj.h" + typedef struct _button Button; struct _desk; =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/coords.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -3 -r1.31 -r1.32 --- coords.c 4 Sep 2005 07:27:18 -0000 1.31 +++ coords.c 18 Sep 2005 06:35:37 -0000 1.32 @@ -22,6 +22,7 @@ */ #include "E.h" #include "desktops.h" +#include "eobj.h" #include "ewins.h" #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/desktops.c,v retrieving revision 1.181 retrieving revision 1.182 diff -u -3 -r1.181 -r1.182 --- desktops.c 17 Sep 2005 14:22:04 -0000 1.181 +++ desktops.c 18 Sep 2005 06:35:37 -0000 1.182 @@ -25,6 +25,7 @@ #include "buttons.h" #include "desktops.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "tooltips.h" #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/desktops.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- desktops.h 11 Sep 2005 18:08:05 -0000 1.4 +++ desktops.h 18 Sep 2005 06:35:37 -0000 1.5 @@ -25,6 +25,8 @@ #ifndef _DESKTOPS_H_ #define _DESKTOPS_H_ +#include "eobj.h" + typedef struct _desk Desk; struct _button; =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ecompmgr.c,v retrieving revision 1.62 retrieving revision 1.63 diff -u -3 -r1.62 -r1.63 --- ecompmgr.c 17 Sep 2005 18:55:17 -0000 1.62 +++ ecompmgr.c 18 Sep 2005 06:35:37 -0000 1.63 @@ -32,6 +32,7 @@ #include "desktops.h" #include "ecompmgr.h" #include "emodule.h" +#include "eobj.h" #include "xwin.h" #include <stdlib.h> =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ecompmgr.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- ecompmgr.h 17 Sep 2005 14:22:05 -0000 1.18 +++ ecompmgr.h 18 Sep 2005 06:35:37 -0000 1.19 @@ -25,6 +25,8 @@ #if USE_COMPOSITE +#include "eobj.h" + typedef struct { char enable; =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/edge.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -3 -r1.22 -r1.23 --- edge.c 10 Sep 2005 18:24:20 -0000 1.22 +++ edge.c 18 Sep 2005 06:35:37 -0000 1.23 @@ -23,6 +23,7 @@ */ #include "E.h" #include "desktops.h" +#include "eobj.h" #include "ewins.h" #include "menus.h" /* FIXME - Should not be here */ #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/eobj.c,v retrieving revision 1.49 retrieving revision 1.50 diff -u -3 -r1.49 -r1.50 --- eobj.c 17 Sep 2005 19:33:10 -0000 1.49 +++ eobj.c 18 Sep 2005 06:35:37 -0000 1.50 @@ -24,6 +24,7 @@ #include "desktops.h" #include "ecompmgr.h" #include "ecore-e16.h" +#include "eobj.h" #include "ewins.h" /* FIXME - Should not be here */ #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ewin-ops.c,v retrieving revision 1.64 retrieving revision 1.65 diff -u -3 -r1.64 -r1.65 --- ewin-ops.c 10 Sep 2005 14:05:30 -0000 1.64 +++ ewin-ops.c 18 Sep 2005 06:35:37 -0000 1.65 @@ -24,6 +24,7 @@ #include "E.h" #include "desktops.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "ewin-ops.h" #include "snaps.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ewins.c,v retrieving revision 1.106 retrieving revision 1.107 diff -u -3 -r1.106 -r1.107 --- ewins.c 11 Sep 2005 17:20:32 -0000 1.106 +++ ewins.c 18 Sep 2005 06:35:37 -0000 1.107 @@ -25,6 +25,7 @@ #include "desktops.h" #include "ecompmgr.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "icons.h" #include "snaps.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ewins.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ewins.h 4 Sep 2005 07:27:18 -0000 1.12 +++ ewins.h 18 Sep 2005 06:35:37 -0000 1.13 @@ -24,6 +24,8 @@ #ifndef _EWIN_H_ #define _EWIN_H_ +#include "eobj.h" + struct _desk; #if 0 =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/hiwin.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- hiwin.c 7 Aug 2005 20:33:16 -0000 1.3 +++ hiwin.c 18 Sep 2005 06:35:37 -0000 1.4 @@ -22,6 +22,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "E.h" +#include "eobj.h" #include "ewins.h" #include "hiwin.h" #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/iconify.c,v retrieving revision 1.176 retrieving revision 1.177 diff -u -3 -r1.176 -r1.177 --- iconify.c 10 Sep 2005 18:24:20 -0000 1.176 +++ iconify.c 18 Sep 2005 06:35:37 -0000 1.177 @@ -25,6 +25,7 @@ #include "desktops.h" #include "ecore-e16.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "icons.h" #include "menus.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/ipc.c,v retrieving revision 1.234 retrieving revision 1.235 diff -u -3 -r1.234 -r1.235 --- ipc.c 11 Sep 2005 17:20:32 -0000 1.234 +++ ipc.c 18 Sep 2005 06:35:38 -0000 1.235 @@ -24,6 +24,7 @@ #include "E.h" #include "desktops.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "ewin-ops.h" #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/menus.c,v retrieving revision 1.212 retrieving revision 1.213 diff -u -3 -r1.212 -r1.213 --- menus.c 10 Sep 2005 18:24:20 -0000 1.212 +++ menus.c 18 Sep 2005 06:35:38 -0000 1.213 @@ -23,6 +23,7 @@ */ #include "E.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "menus.h" #include "tooltips.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/misc.c,v retrieving revision 1.67 retrieving revision 1.68 diff -u -3 -r1.67 -r1.68 --- misc.c 16 Jul 2005 16:57:43 -0000 1.67 +++ misc.c 18 Sep 2005 06:35:38 -0000 1.68 @@ -22,6 +22,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "E.h" +#include "eobj.h" #include "xwin.h" #include <sys/time.h> #include <time.h> =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/progress.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- progress.c 16 Jul 2005 16:57:43 -0000 1.24 +++ progress.c 18 Sep 2005 06:35:38 -0000 1.25 @@ -21,6 +21,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "E.h" +#include "eobj.h" #include "xwin.h" struct _progressbar =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/slideout.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -3 -r1.42 -r1.43 --- slideout.c 4 Sep 2005 07:27:20 -0000 1.42 +++ slideout.c 18 Sep 2005 06:35:38 -0000 1.43 @@ -25,6 +25,7 @@ #include "buttons.h" #include "desktops.h" #include "emodule.h" +#include "eobj.h" #include "ewins.h" #include "xwin.h" =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/stacking.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -3 -r1.26 -r1.27 --- stacking.c 11 Sep 2005 17:20:32 -0000 1.26 +++ stacking.c 18 Sep 2005 06:35:38 -0000 1.27 @@ -22,6 +22,7 @@ */ #include "E.h" #include "desktops.h" +#include "eobj.h" #include "ewins.h" #define ENABLE_DEBUG_STACKING 1 =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/startup.c,v retrieving revision 1.58 retrieving revision 1.59 diff -u -3 -r1.58 -r1.59 --- startup.c 8 Sep 2005 20:28:44 -0000 1.58 +++ startup.c 18 Sep 2005 06:35:38 -0000 1.59 @@ -22,6 +22,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "E.h" +#include "eobj.h" #include "xwin.h" #include <time.h> =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/tooltips.c,v retrieving revision 1.84 retrieving revision 1.85 diff -u -3 -r1.84 -r1.85 --- tooltips.c 20 Aug 2005 13:55:51 -0000 1.84 +++ tooltips.c 18 Sep 2005 06:35:38 -0000 1.85 @@ -24,6 +24,7 @@ #include "E.h" #include "conf.h" #include "emodule.h" +#include "eobj.h" #include "tooltips.h" #include "xwin.h" ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs