On 17:10 Sun 08 Apr     , Xavier Oswald wrote:
> Hi,

Re Hi,

> I just tried today the enlightenment cvs version and I got a mistake with
> building eap_edit.
> 
> e17/apps/e_utils/src/bin/eapp_edit$ make

I have investigate a little bit more.

> gcc -DHAVE_CONFIG_H -I. -I../../.. -I../lib -I/usr/local/include 
> -I../../../lib
> -I/usr/local/include/ewl -I/usr/local/include -I/usr/local/include
> -I/usr/local/include -I/usr/local/include/engrave -I/usr/local/include      -g
> -O2 -MT eapp_edit_main.o -MD -MP -MF .deps/eapp_edit_main.Tpo -c -o
> eapp_edit_main.o eapp_edit_main.c
> eapp_edit_main.c: In function ‘eapp_cb_fd_changed’:
> eapp_edit_main.c:409: error: ‘Ewl_Dialog_Event’ undeclared (first use in this
> function)
> eapp_edit_main.c:409: error: (Each undeclared identifier is reported only once
> eapp_edit_main.c:409: error: for each function it appears in.)
> eapp_edit_main.c:409: error: ‘e’ undeclared (first use in this function)
> make: *** [eapp_edit_main.o] Error 1

I join to this mail a small patch.
It seems that it doesn't work that nice but the idea should not be so far.

Sorry, I have to imporve my knowledge in C ;)
If someone could help me to fix this, It would be nice.

Thanks

friendly,
-- 
  ,''`.  Xavier Oswald <[EMAIL PROTECTED]>
 : :' :  GNU/LINUX Debian & Debian-Edu 
 `. `'   GnuPG Key ID 0x88BBB51E 
   `-    938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E
? test.patch
Index: eapp_edit_main.c
===================================================================
RCS file: /var/cvs/e/e17/apps/e_utils/src/bin/eapp_edit/eapp_edit_main.c,v
retrieving revision 1.56
diff -r1.56 eapp_edit_main.c
180c180,181
<     
---
>     Ewl_Stock *s;
> 
208c209,210
<     ewl_button_stock_type_set(EWL_BUTTON(o), EWL_STOCK_SAVE);
---
>     ewl_stock_type_set(EWL_STOCK(s), EWL_STOCK_SAVE);
>     (EWL_BUTTON(o))->stock = *(EWL_STOCK(s));
218c220,221
<     ewl_button_stock_type_set(EWL_BUTTON(o), EWL_STOCK_CANCEL);
---
>     ewl_stock_type_set(EWL_STOCK(s), EWL_STOCK_CANCEL);
>     (EWL_BUTTON(o))->stock = *(EWL_STOCK(s));
252c255
<     ewl_border_text_set(EWL_BORDER(icon_border), "Icon");
---
>     ewl_border_label_set(EWL_BORDER(icon_border), "Icon");
317c320
<     ewl_border_text_set(EWL_BORDER(border), title);
---
>     ewl_border_label_set(EWL_BORDER(border), title);
409c412
<     Ewl_Dialog_Event *e;
---
>     Ewl_Event_Action_Response *e;
-------------------------------------------------------------------------
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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to