Patch to make eapp edit more usable by using the new ewl_entry. I think
thats all which is needed for the API change.

Thanks Dan. 

Stafford
-- 
Index: eapp_edit_main.c
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e_utils/src/bin/eapp_edit/eapp_edit_main.c,v
retrieving revision 1.17
diff -u -r1.17 eapp_edit_main.c
--- eapp_edit_main.c	28 Jun 2005 13:27:42 -0000	1.17
+++ eapp_edit_main.c	6 Jul 2005 16:50:38 -0000
@@ -153,7 +153,7 @@
     ret_char = ewl_checkbutton_is_checked(EWL_CHECKBUTTON(source));
     size_ret = 1;
   } else {
-    ret = ewl_entry_text_get(EWL_ENTRY(source));
+    ret = ewl_text_text_get(EWL_TEXT(source));
     if (ret)
       size_ret = strlen(ret);
     else
@@ -304,7 +304,7 @@
   wname = _eapp_edit_read(ef, "app/window/name", NULL, "Window name", grid, 7, 0);
   wclass = _eapp_edit_read(ef, "app/window/class", NULL, "Window class", grid, 8, 0);
   if (new_win_class)
-    ewl_entry_text_set(EWL_ENTRY(wclass), new_win_class);
+    ewl_text_text_set(EWL_TEXT(wclass), new_win_class);
   start = _eapp_edit_read(ef, "app/info/startup_notify", NULL, "Startup notify", grid, 9, 1);
   wait = _eapp_edit_read(ef, "app/info/wait_exit", NULL, "Wait exit", grid, 10, 1);
    

Reply via email to