Enlightenment CVS committal Author : pfritz Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/bin/tests/image Modified Files: ewl_image.c Log Message: *API BREAK* see the discussion in the mailing list. misc and e_modules will follow =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/image/ewl_image.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- ewl_image.c 4 Jun 2007 18:46:34 -0000 1.7 +++ ewl_image.c 25 Jul 2007 17:00:59 -0000 1.8 @@ -123,9 +123,9 @@ { char *str; - ecore_dlist_goto_first(images); + ecore_dlist_first_goto(images); - while ((str = ecore_dlist_remove_last(images)) != NULL) + while ((str = ecore_dlist_last_remove(images)) != NULL) free(str); ecore_dlist_destroy(images); @@ -154,7 +154,7 @@ ecore_dlist_previous(images); img = ecore_dlist_current(images); - if (!img) img = ecore_dlist_goto_last(images); + if (!img) img = ecore_dlist_last_goto(images); ewl_text_text_set(EWL_TEXT(entry_path), img); ewl_image_file_set(EWL_IMAGE(image), img, NULL); @@ -172,7 +172,7 @@ img = ecore_dlist_current(images); - if (!img) img = ecore_dlist_goto_last(images); + if (!img) img = ecore_dlist_last_goto(images); ewl_text_text_set(EWL_TEXT(entry_path), img); ewl_image_file_set(EWL_IMAGE(image), img, NULL); @@ -187,7 +187,7 @@ if (img && image_exists(img)) { ecore_dlist_append(images, img); - ecore_dlist_goto_last(images); + ecore_dlist_last_goto(images); ewl_image_file_set(EWL_IMAGE(image), img, NULL); } else printf("ERROR: %s does not exist\n", img); @@ -203,7 +203,7 @@ img = ecore_dlist_current(images); if (!img) - img = ecore_dlist_goto_first(images); + img = ecore_dlist_first_goto(images); ewl_text_text_set(EWL_TEXT(entry_path), img); ewl_image_file_set(EWL_IMAGE(image), img, NULL); ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs