Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/bin/tests/combo


Modified Files:
        ewl_combo.c 


Log Message:
API breakage for MVC based widgets.
Improved namespace for ewl_model.

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/combo/ewl_combo.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_combo.c 18 Jan 2007 12:00:03 -0000      1.7
+++ ewl_combo.c 21 Mar 2007 03:22:54 -0000      1.8
@@ -17,8 +17,8 @@
  *
  * @code
  * model = ewl_model_new();
- * ewl_model_fetch_set(model, combo_test_data_fetch);
- * ewl_model_count_set(model, combo_test_data_count_get);
+ * ewl_model_data_fetch_set(model, combo_test_data_fetch);
+ * ewl_model_data_count_set(model, combo_test_data_count_get);
 
  * view = ewl_view_new();
  * ewl_view_constructor_set(view, ewl_label_new);
@@ -118,8 +118,8 @@
 
        /* create the model */
        model = ewl_model_new();
-       ewl_model_fetch_set(model, combo_test_data_fetch);
-       ewl_model_count_set(model, combo_test_data_count_get);
+       ewl_model_data_fetch_set(model, combo_test_data_fetch);
+       ewl_model_data_count_set(model, combo_test_data_count_get);
 
        /* create the view for ewl_label widgets */
        view = ewl_view_new();
@@ -155,8 +155,8 @@
 
        /* create the editable model/view */
        model = ewl_model_new();
-       ewl_model_count_set(model, combo_test_data_count_get);
-       ewl_model_fetch_set(model, combo_test_data_fetch);
+       ewl_model_data_count_set(model, combo_test_data_count_get);
+       ewl_model_data_fetch_set(model, combo_test_data_fetch);
 
        view = ewl_view_new();
        ewl_view_constructor_set(view, combo_test_editable_new);



-------------------------------------------------------------------------
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

Reply via email to