Enlightenment CVS committal Author : pfritz Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: ewl_tree.c ewl_text.c ewl_scrollpane.c ewl_image.c ewl_filepicker.c ewl_filelist_view.c ewl_container.c Log Message: warnings-- =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_tree.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -3 -r1.75 -r1.76 --- ewl_tree.c 29 Jul 2008 02:31:47 -0000 1.75 +++ ewl_tree.c 5 Aug 2008 21:04:14 -0000 1.76 @@ -217,7 +217,7 @@ void ewl_tree_column_count_set(Ewl_Tree *tree, unsigned int count) { - int i; + unsigned int i; DENTER_FUNCTION(DLEVEL_STABLE); DCHECK_PARAM_PTR(tree); =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_text.c,v retrieving revision 1.206 retrieving revision 1.207 diff -u -3 -r1.206 -r1.207 --- ewl_text.c 30 Jul 2008 21:43:54 -0000 1.206 +++ ewl_text.c 5 Aug 2008 21:04:14 -0000 1.207 @@ -3034,7 +3034,7 @@ { char *otxt, *ptr; size_t len; - int i; + size_t i; len = strlen(t->obscure); otxt = alloca(len * node->char_len + 1); =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_scrollpane.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -3 -r1.42 -r1.43 --- ewl_scrollpane.c 11 Jun 2008 23:04:45 -0000 1.42 +++ ewl_scrollpane.c 5 Aug 2008 21:04:14 -0000 1.43 @@ -1054,7 +1054,8 @@ * @brief The mouse move callback for kinetic scrolling */ static void -ewl_scrollpane_cb_mouse_move_embedded(Ewl_Widget *w, void *ev, void *data) +ewl_scrollpane_cb_mouse_move_embedded(Ewl_Widget *w __UNUSED__, void *ev, + void *data) { Ewl_Scrollpane *s; Ewl_Event_Mouse *mm; @@ -1097,7 +1098,8 @@ * @brief The mouse up callback for kinetic scrolling */ static void -ewl_scrollpane_cb_mouse_up_normal(Ewl_Widget *w, void *ev, void *data) +ewl_scrollpane_cb_mouse_up_normal(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, + void *data) { Ewl_Scrollpane *s; @@ -1119,7 +1121,8 @@ * @brief The mouse up callback for kinetic scrolling */ static void -ewl_scrollpane_cb_mouse_up_embedded(Ewl_Widget *w, void *ev, void *data) +ewl_scrollpane_cb_mouse_up_embedded(Ewl_Widget *w __UNUSED__, + void *ev __UNUSED__, void *data) { Ewl_Scrollpane *s; Ewl_Event_Mouse *mm; @@ -1505,7 +1508,8 @@ * @brief Frees data from the scrollpane */ void -ewl_scrollpane_cb_destroy(Ewl_Widget *w, void *ev, void *data) +ewl_scrollpane_cb_destroy(Ewl_Widget *w, void *ev __UNUSED__, + void *data __UNUSED__) { DENTER_FUNCTION(DLEVEL_STABLE); DCHECK_PARAM_PTR(w); =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_image.c,v retrieving revision 1.74 retrieving revision 1.75 diff -u -3 -r1.74 -r1.75 --- ewl_image.c 7 May 2008 13:38:23 -0000 1.74 +++ ewl_image.c 5 Aug 2008 21:04:14 -0000 1.75 @@ -651,7 +651,8 @@ #ifdef BUILD_EPSILON_SUPPORT static void -ewl_image_thumbnail_cb_value_changed(Ewl_Widget *w, void *ev, void *data) +ewl_image_thumbnail_cb_value_changed(Ewl_Widget *w, void *ev __UNUSED__ + , void *data) { Ewl_Widget *thumb; Ewl_Widget *image; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filepicker.c,v retrieving revision 1.54 retrieving revision 1.55 diff -u -3 -r1.54 -r1.55 --- ewl_filepicker.c 11 Jun 2008 23:04:45 -0000 1.54 +++ ewl_filepicker.c 5 Aug 2008 21:04:14 -0000 1.55 @@ -1171,7 +1171,7 @@ } static void -ewl_filepicker_cb_dir_new(Ewl_Widget *w, void *ev, +ewl_filepicker_cb_dir_new(Ewl_Widget *w, void *ev __UNUSED__, void *data) { Ewl_Widget *d; @@ -1238,7 +1238,7 @@ } static void -ewl_filepicker_cb_dialog_delete(Ewl_Widget *w, void *ev, +ewl_filepicker_cb_dialog_delete(Ewl_Widget *w, void *ev __UNUSED__, void *data) { DENTER_FUNCTION(DLEVEL_STABLE); @@ -1253,7 +1253,7 @@ } static void -ewl_filepicker_cb_dialog_response(Ewl_Widget *w, void *ev, +ewl_filepicker_cb_dialog_response(Ewl_Widget *w, void *ev __UNUSED__, void *data) { Ewl_Filepicker_Dialog *resp; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist_view.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- ewl_filelist_view.c 23 Jun 2008 19:00:40 -0000 1.7 +++ ewl_filelist_view.c 5 Aug 2008 21:04:14 -0000 1.8 @@ -14,7 +14,7 @@ static void ewl_filelist_view_cb_dnd_data_request(Ewl_Widget *w, void *event, - void *data__UNUSED__) + void *data __UNUSED__) { char buf[PATH_MAX + 8], *file, *uri; int len = 0; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_container.c,v retrieving revision 1.78 retrieving revision 1.79 diff -u -3 -r1.78 -r1.79 --- ewl_container.c 5 Aug 2008 19:30:12 -0000 1.78 +++ ewl_container.c 5 Aug 2008 21:04:14 -0000 1.79 @@ -1659,7 +1659,8 @@ * @brief A callback to be used for container widgets such as scrollpane, box */ void -ewl_container_cb_container_focus_out(Ewl_Widget *w, void *ev_data, void *user_data) +ewl_container_cb_container_focus_out(Ewl_Widget *w, void *ev_data, + void *user_data __UNUSED__) { Ewl_Widget *focus_in = NULL; @@ -1686,7 +1687,8 @@ * @brief A callback to be used with end widgets such as buttons, etc */ void -ewl_container_cb_widget_focus_out(Ewl_Widget *w, void *ev_data, void *user_data) +ewl_container_cb_widget_focus_out(Ewl_Widget *w, void *ev_data __UNUSED__, + void *user_data __UNUSED__) { Ewl_Container *c; @@ -1716,7 +1718,8 @@ * @brief A callback to be used with end widgets */ void -ewl_container_cb_widget_focus_in(Ewl_Widget *w, void *ev_data, void *user_data) +ewl_container_cb_widget_focus_in(Ewl_Widget *w, void *ev_data __UNUSED__, + void *user_data __UNUSED__) { Ewl_Container *c; ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs