Enlightenment CVS committal Author : dj2 Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: ewl_filedialog.c ewl_filelist_tree.c ewl_list.c ewl_mvc.c ewl_tree2.c Log Message: - fix warnings =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filedialog.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -3 -r1.30 -r1.31 --- ewl_filedialog.c 6 Feb 2007 13:42:17 -0000 1.30 +++ ewl_filedialog.c 7 Feb 2007 07:45:32 -0000 1.31 @@ -568,7 +568,8 @@ } static void -ewl_filedialog_cb_tree_view(Ewl_Widget *w, void *ev, void *data) +ewl_filedialog_cb_tree_view(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, + void *data) { Ewl_Filedialog *fd; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist_tree.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_filelist_tree.c 6 Feb 2007 13:42:17 -0000 1.4 +++ ewl_filelist_tree.c 7 Feb 2007 07:45:32 -0000 1.5 @@ -307,7 +307,8 @@ * @internal */ static void -ewl_filelist_tree_data_sort(void *data, unsigned int column, Ewl_Sort_Direction sort) +ewl_filelist_tree_data_sort(void *data, unsigned int column __UNUSED__, + Ewl_Sort_Direction sort) { char *file; unsigned int count; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_list.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- ewl_list.c 6 Feb 2007 13:42:17 -0000 1.16 +++ ewl_list.c 7 Feb 2007 07:45:32 -0000 1.17 @@ -197,7 +197,8 @@ } static Ewl_Widget * -ewl_list_widget_at(Ewl_MVC *mvc, void *data, int row, int column __UNUSED__) +ewl_list_widget_at(Ewl_MVC *mvc, void *data __UNUSED__, int row, + int column __UNUSED__) { Ewl_Widget *w; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_mvc.c,v retrieving revision 1.17 retrieving revision 1.18 diff -u -3 -r1.17 -r1.18 --- ewl_mvc.c 6 Feb 2007 13:42:17 -0000 1.17 +++ ewl_mvc.c 7 Feb 2007 07:45:32 -0000 1.18 @@ -530,7 +530,7 @@ * @brief Removes the given index from the list of selected indices */ void -ewl_mvc_selected_rm(Ewl_MVC *mvc, void *data, int row, int column) +ewl_mvc_selected_rm(Ewl_MVC *mvc, void *data __UNUSED__, int row, int column) { Ewl_Selection *sel; @@ -636,7 +636,7 @@ * @brief Checks if the given index is selected or not. */ unsigned int -ewl_mvc_selected_is(Ewl_MVC *mvc, void *data, int row, int column) +ewl_mvc_selected_is(Ewl_MVC *mvc, void *data __UNUSED__, int row, int column) { Ewl_Selection *sel; int ret = FALSE; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_tree2.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -3 -r1.55 -r1.56 --- ewl_tree2.c 6 Feb 2007 13:42:17 -0000 1.55 +++ ewl_tree2.c 7 Feb 2007 07:45:32 -0000 1.56 @@ -416,7 +416,7 @@ ecore_list_goto_first(exp); while ((i = (int)ecore_list_next(exp))) { - if (i > row) break; + if (i > (int)row) break; } ecore_list_insert(exp, (void *)row); @@ -499,7 +499,7 @@ ecore_list_goto_first(exp); while ((i = (int)ecore_list_current(exp))) { - if (i == row) + if (i == (int)row) { expanded = TRUE; break; @@ -982,7 +982,7 @@ } static Ewl_Widget * -ewl_tree2_widget_at(Ewl_MVC *mvc, void *data, int row, int column) +ewl_tree2_widget_at(Ewl_MVC *mvc, void *data __UNUSED__, int row, int column) { Ewl_Widget *r, *w; Ewl_Tree2 *tree; ------------------------------------------------------------------------- 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