Enlightenment CVS committal Author : titan Project : e17 Module : apps/ephoto
Dir : e17/apps/ephoto/src/bin Modified Files: ephoto.h ephoto_list_view.c ephoto_main.c Log Message: Update ephoto to the new api changes. =================================================================== RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- ephoto.h 16 Mar 2007 04:34:22 -0000 1.9 +++ ephoto.h 21 Mar 2007 10:40:27 -0000 1.10 @@ -8,10 +8,12 @@ #include <Evas.h> #include <Ewl.h> #include <fnmatch.h> + #ifdef BUILD_EXIF_SUPPORT #include <libexif/exif-data.h> #include <libexif/exif-loader.h> #endif + #include <libgen.h> #include <limits.h> #include <sqlite3.h> =================================================================== RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto_list_view.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- ephoto_list_view.c 13 Mar 2007 00:52:16 -0000 1.11 +++ ephoto_list_view.c 21 Mar 2007 10:40:27 -0000 1.12 @@ -49,8 +49,8 @@ Ewl_View *view; model = ewl_model_new(); - ewl_model_fetch_set(model, list_data_fetch); - ewl_model_count_set(model, list_data_count); + ewl_model_data_fetch_set(model, list_data_fetch); + ewl_model_data_count_set(model, list_data_count); tree = ewl_tree2_new(); ewl_tree2_headers_visible_set(EWL_TREE2(tree), 0); =================================================================== RCS file: /cvs/e/e17/apps/ephoto/src/bin/ephoto_main.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- ephoto_main.c 16 Mar 2007 04:34:22 -0000 1.14 +++ ephoto_main.c 21 Mar 2007 10:40:27 -0000 1.15 @@ -143,6 +143,7 @@ button = add_button(em->toolbar, NULL, PACKAGE_DATA_DIR "/images/get_exif.png", NULL, NULL); ewl_image_size_set(EWL_IMAGE(EWL_BUTTON(button)->image_object), 30, 30); ewl_attach_tooltip_text_set(button, "You do not have libexif 0.6.13"); + #ifdef BUILD_EXIF_SUPPORT ewl_callback_append(button, EWL_CALLBACK_CLICKED, display_exif_dialog, NULL); ewl_attach_tooltip_text_set(button, "View Exif Data"); @@ -233,8 +234,8 @@ Ewl_View *view; model = ewl_model_new(); - ewl_model_fetch_set(model, album_data_fetch); - ewl_model_count_set(model, album_data_count); + ewl_model_data_fetch_set(model, album_data_fetch); + ewl_model_data_count_set(model, album_data_count); tree = ewl_tree2_new(); ewl_tree2_headers_visible_set(EWL_TREE2(tree), 0); ------------------------------------------------------------------------- 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