Enlightenment CVS committal

Author  : titan
Project : e17
Module  : apps/ephoto

Dir     : e17/apps/ephoto/src/bin


Modified Files:
        ephoto_list_view.c ephoto_main.c 


Log Message:
Make her compile again due to ewl changes.

===================================================================
RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto_list_view.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ephoto_list_view.c  30 Mar 2007 02:47:16 -0000      1.17
+++ ephoto_list_view.c  3 Apr 2007 20:12:01 -0000       1.18
@@ -1,9 +1,9 @@
 #include "ephoto.h"
 
-static Ewl_Widget *list_view_new(void *data, int column, int row);
-static Ewl_Widget *list_header_fetch(void *data, int column);
+static Ewl_Widget *list_view_new(void *data, unsigned int row, unsigned int 
column);
+static Ewl_Widget *list_header_fetch(void *data, unsigned int column);
 static void *list_data_fetch(void *data, unsigned int row, unsigned int 
column);
-static int list_data_count(void *data);
+static unsigned int list_data_count(void *data);
 
 /*Add the list view*/
 Ewl_Widget *add_list_view(Ewl_Widget *c)
@@ -54,7 +54,7 @@
 
 
 /* The view of the images */
-static Ewl_Widget *list_view_new(void *data, int row, int column)
+static Ewl_Widget *list_view_new(void *data, unsigned int row, unsigned int 
column)
 {
        const char *image;
        char info[PATH_MAX];
@@ -85,7 +85,7 @@
 }
 
 /* The header for the tree */
-static Ewl_Widget *list_header_fetch(void *data, int column)
+static Ewl_Widget *list_header_fetch(void *data, unsigned int column)
 {
        Ewl_Widget *label;
 
@@ -110,7 +110,7 @@
 }
 
 /* The number of images the view is displaying */
-static int list_data_count(void *data)
+static unsigned int list_data_count(void *data)
 {
        int val;
 
===================================================================
RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto_main.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- ephoto_main.c       30 Mar 2007 02:47:16 -0000      1.21
+++ ephoto_main.c       3 Apr 2007 20:12:01 -0000       1.22
@@ -9,10 +9,10 @@
 static Ewl_Widget *add_atree(Ewl_Widget *c);
 
 /*Ephoto MVC Callbacks*/
-static Ewl_Widget *album_view_new(void *data, int column, int row);
-static Ewl_Widget *album_header_fetch(void *data, int column);
+static Ewl_Widget *album_view_new(void *data, unsigned int row, unsigned int 
column);
+static Ewl_Widget *album_header_fetch(void *data, unsigned int column);
 static void *album_data_fetch(void *data, unsigned int row, unsigned int 
column);
-static int album_data_count(void *data);
+static unsigned int album_data_count(void *data);
 
 /*Ephoto Global Variables*/
 Ephoto_Main *em;
@@ -203,7 +203,7 @@
 
 
 /* The view of the users albums */
-static Ewl_Widget *album_view_new(void *data, int column, int row)
+static Ewl_Widget *album_view_new(void *data, unsigned int row, unsigned int 
column)
 {
        const char *album;
        Ewl_Widget *icon;
@@ -226,7 +226,7 @@
 }
 
 /* The header for the tree */
-static Ewl_Widget *album_header_fetch(void *data, int column)
+static Ewl_Widget *album_header_fetch(void *data, unsigned int column)
 {
        Ewl_Widget *label;
 
@@ -251,7 +251,7 @@
 }
 
 /* The number of albums the view is displaying */
-static int album_data_count(void *data)
+static unsigned int album_data_count(void *data)
 {
        int val;
 



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to