Re: add_item conflict
- Posted by jimcbrown (admin) Feb 07, 2013
- 1243 views
buzzo said...
There is a conflict in routine names in the example6.exw (List.exw) program..
add_item is used in wxeud.e and std/sequence.e .
tried
namespace lib public include std/sequence.e public function add_item() include lib.e
But it did not work.. crashes back to the terminal..
Can wxeud.e and std/sequence.e live together somehow?
This is how I did it:
-- main.ex include std/sequence.e include wxeud.e as wxeud ? wxeud:add_item(....) ? stdseq:add_item(...)