Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : proto

Dir     : e17/proto/esmart/src/file_dialog


Modified Files:
        Esmart_File_Dialog.h esmart_file_dialog.c 


Log Message:
use Evas_Coord, fixed some warnings
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/proto/esmart/src/file_dialog/Esmart_File_Dialog.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Esmart_File_Dialog.h        25 Apr 2004 15:19:49 -0000      1.3
+++ Esmart_File_Dialog.h        27 Apr 2004 19:34:28 -0000      1.4
@@ -47,7 +47,7 @@
  * @param evas the evas to add the object to
  * @param edje the file to load the edje parts from
  */
-Evas_Object *esmart_file_dialog_new (Evas * evas, const char *edje);
+Evas_Object *esmart_file_dialog_new (Evas * evas, const char *edje_file);
 
 void esmart_file_dialog_callback_add (Evas_Object * efd,
                                      void (*func) (void *data,
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/proto/esmart/src/file_dialog/esmart_file_dialog.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- esmart_file_dialog.c        22 Apr 2004 16:32:04 -0000      1.6
+++ esmart_file_dialog.c        27 Apr 2004 19:34:28 -0000      1.7
@@ -24,7 +24,11 @@
  *========================================================================*/
 static int sort_cb (void *d1, void *d2);
 static void interp_return_key (void *data, const char *str);
+
+#if 0
+/* unused */
 static void interp_tab_key (void *data, const char *str);
+#endif
 
 static void
 _esmart_file_dialog_entry_focus_cb (void *data, Evas_Object * o,
@@ -64,10 +68,10 @@
                                                    Evas_Object * above);
 static void _esmart_file_dialog_object_stack_below (Evas_Object * o,
                                                    Evas_Object * below);
-static void _esmart_file_dialog_object_move (Evas_Object * o, double x,
-                                            double y);
-static void _esmart_file_dialog_object_resize (Evas_Object * o, double w,
-                                              double h);
+static void _esmart_file_dialog_object_move (Evas_Object * o, Evas_Coord x,
+                                            Evas_Coord y);
+static void _esmart_file_dialog_object_resize (Evas_Object * o, Evas_Coord w,
+                                              Evas_Coord h);
 static void _esmart_file_dialog_object_show (Evas_Object * o);
 static void _esmart_file_dialog_object_hide (Evas_Object * o);
 static void _esmart_file_dialog_object_color_set (Evas_Object * o, int r,
@@ -284,6 +288,8 @@
     }
 }
 
+#if 0
+/* unused */
 static void
 interp_tab_key (void *data, const char *str)
 {
@@ -292,6 +298,7 @@
       fprintf (stderr, "Tab %s\n", str);
     }
 }
+#endif
 
 static int
 sort_cb (void *d1, void *d2)
@@ -757,7 +764,7 @@
 }
 
 void
-_esmart_file_dialog_object_move (Evas_Object * o, double x, double y)
+_esmart_file_dialog_object_move (Evas_Object * o, Evas_Coord x, Evas_Coord y)
 {
   Esmart_File_Dialog *data;
 
@@ -771,7 +778,7 @@
 }
 
 void
-_esmart_file_dialog_object_resize (Evas_Object * o, double w, double h)
+_esmart_file_dialog_object_resize (Evas_Object * o, Evas_Coord w, Evas_Coord h)
 {
   Esmart_File_Dialog *data;
 




-------------------------------------------------------
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to