Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        container.c container.h iconify.c 


Log Message:
Use global animation time step.

===================================================================
RCS file: /cvs/e/e16/e/src/container.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- container.c 17 Jan 2007 01:10:42 -0000      1.6
+++ container.c 4 Feb 2007 23:06:03 -0000       1.7
@@ -2016,7 +2016,6 @@
  */
 static const CfgItem ContainersCfgItems[] = {
    CFG_ITEM_INT(Conf_containers, anim_time, 250),
-   CFG_ITEM_INT(Conf_containers, anim_step, 10),
 };
 #define N_CFG_ITEMS (sizeof(ContainersCfgItems)/sizeof(CfgItem))
 
===================================================================
RCS file: /cvs/e/e16/e/src/container.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- container.h 13 Jan 2007 19:14:27 -0000      1.3
+++ container.h 4 Feb 2007 23:06:03 -0000       1.4
@@ -31,7 +31,6 @@
 typedef struct
 {
    unsigned int        anim_time;      /* Animation run time  (ms) */
-   unsigned int        anim_step;      /* Animation time step (ms) */
 } ContainerCfg;
 
 typedef struct
===================================================================
RCS file: /cvs/e/e16/e/src/iconify.c,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -3 -r1.222 -r1.223
--- iconify.c   17 Jan 2007 01:10:43 -0000      1.222
+++ iconify.c   4 Feb 2007 23:06:03 -0000       1.223
@@ -41,7 +41,7 @@
 #define y1 y1_
 
 #define IB_ANIM_TIME    Conf_containers.anim_time
-#define IB_ANIM_STEP    Conf_containers.anim_step
+#define IB_ANIM_STEP    Conf.animation.step
 
 static void
 IB_Animate_Sleep(double t0, double a)
@@ -240,8 +240,6 @@
 
    if (Conf_containers.anim_time < 10 || Conf_containers.anim_time > 10000)
       Conf_containers.anim_time = 250;
-   if (Conf_containers.anim_step < 1 || Conf_containers.anim_step > 1000)
-      Conf_containers.anim_step = 10;
 
    EobjsRepaint();
    EGrabServer();



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to