Enlightenment CVS committal Author : raster Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: Makefile.am e_layout.c e_main.c e_table.c Added Files: e_test.c e_test.h Log Message: add a test file that we can destroy at will for testing bits of new code... and just disable when done. fix up layotu and table objects... bugs... =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/Makefile.am,v retrieving revision 1.17 retrieving revision 1.18 diff -u -3 -r1.17 -r1.18 --- Makefile.am 13 Mar 2005 08:21:01 -0000 1.17 +++ Makefile.am 13 Mar 2005 11:17:26 -0000 1.18 @@ -43,7 +43,8 @@ e_signals.h \ e_xinerama.h \ e_table.h \ -e_layout.h +e_layout.h \ +e_test.h enlightenment_SOURCES = \ @@ -81,6 +82,7 @@ e_xinerama.c \ e_table.c \ e_layout.c \ +e_test.c \ $(ENLIGHTENMENTHEADERS) enlightenment_LDFLAGS = -export-dynamic @e_libs@ @dlopen_libs@ =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_layout.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- e_layout.c 13 Mar 2005 08:21:01 -0000 1.1 +++ e_layout.c 13 Mar 2005 11:17:26 -0000 1.2 @@ -113,7 +113,7 @@ sd = evas_object_smart_data_get(obj); _e_layout_smart_adopt(sd, child); sd->items = evas_list_append(sd->items, child); - li = evas_object_data_get(obj, "e_layout_data"); + li = evas_object_data_get(child, "e_layout_data"); _e_layout_smart_move_resize_item(li); } =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_main.c,v retrieving revision 1.51 retrieving revision 1.52 diff -u -3 -r1.51 -r1.52 --- e_main.c 11 Mar 2005 13:09:06 -0000 1.51 +++ e_main.c 13 Mar 2005 11:17:26 -0000 1.52 @@ -329,6 +329,9 @@ ecore_timer_add(16.0, _e_main_cb_startup_fake_end, NULL); } + /* run any testing code now we are set up */ + e_test(); + /* start our main loop */ ecore_main_loop_begin(); =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_table.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- e_table.c 13 Mar 2005 08:21:01 -0000 1.2 +++ e_table.c 13 Mar 2005 11:17:27 -0000 1.3 @@ -119,7 +119,7 @@ sd = evas_object_smart_data_get(obj); _e_table_smart_adopt(sd, child); sd->items = evas_list_append(sd->items, child); - ti = evas_object_data_get(obj, "e_table_data"); + ti = evas_object_data_get(child, "e_table_data"); if (ti) { ti->col = col; ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs