Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/esmart

Dir     : e17/libs/esmart/src/lib/esmart_container/layout/engage


Modified Files:
        engage.c 


Log Message:
static-ify
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/layout/engage/engage.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- engage.c    8 Jan 2005 15:08:00 -0000       1.3
+++ engage.c    18 May 2005 20:44:43 -0000      1.4
@@ -16,20 +16,20 @@
 static Ecore_Timer *zoom_timer = NULL;
 static int zoom_state = CONTAINER_UNZOOMED;
 
-int _container_scroll_timer (void *data);
+static int _container_scroll_timer (void *data);
 static void engage_zoom_in (Container * cont);
 static void engage_zoom_out (Container * cont);
 static int engage_zoom_in_slave (void *data);
 static int engage_zoom_out_slave (void *data);
 
-void
+static void
 _engage_mouse_grabber_mouse_move_cb (void *data, Evas * evas,
                                     Evas_Object * obj, void *ev)
 {
   fprintf (stderr, "Mouse move area\n");
 }
 
-void
+static void
 _engage_mouse_grabber_mouse_in_cb (void *data, Evas * evas, Evas_Object * obj,
                                   void *ev)
 {
@@ -38,7 +38,7 @@
     engage_zoom_in ((Container *) data);
 }
 
-void
+static void
 _engage_mouse_grabber_mouse_out_cb (void *data, Evas * evas,
                                    Evas_Object * obj, void *ev)
 {
@@ -47,7 +47,7 @@
     engage_zoom_out ((Container *) data);
 }
 
-void
+static void
 _engage_grabber_init (Container * cont)
 {
   Evas_Object *obj = NULL;
@@ -66,7 +66,7 @@
   grabber = obj;
 }
 
-void
+static void
 _engage_layout (Container * cont)
 {
   Evas_List *l;
@@ -287,7 +287,7 @@
     }
 }
 
-void
+static void
 _engage_scroll_start (Container * cont, double velocity)
 {
   double length, size;
@@ -307,7 +307,7 @@
   cont->scroll.timer = ecore_timer_add (.02, _container_scroll_timer, cont);
 }
 
-void
+static void
 _engage_scroll_stop (Container * cont)
 {
   /* FIXME: decelerate on stop? */
@@ -318,13 +318,13 @@
     }
 }
 
-void
+static void
 _engage_scroll_to (Container * cont, Container_Element * el)
 {
   return;
 }
 
-void
+static void
 _engage_shutdown ()
 {
   return;
@@ -332,7 +332,7 @@
 
 
 /*** internal plugin functions ***/
-int
+static int
 _container_scroll_timer (void *data)
 {
   Container *cont = data;




-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to