Re: how does value() return an atom??
- Posted by Jerry_Story Mar 03, 2011
- 1491 views
DerekParnell said...
Could it be that you are actually running a different value() function rather than the one in the standard library?
Yup that was it. I changed the code as follows:
include std/get.e as stdget -- include std/get.e -- -- v = stdget:value(x) -- v = value(x)
And then the problem vanished.
I found this in Irv's GtkEngine.e.
override function value(object x) -- replacement for Eu's value()
Could that cause the problem? It didn't before.