[Seaside-dev] Issue 195 in seaside: WATree is broken

codesite-noreply at google.com codesite-noreply at google.com
Sun Oct 5 18:47:37 UTC 2008


Issue 195: WATree is broken
http://code.google.com/p/seaside/issues/detail?id=195

Comment #2 by obi068:
- Something like this in WATRee
MessageSend receiver: self selector: #select: argument: aNode
does not work because
WAActionCallback evaluateWithArgument: anObject
  sends valueWithPossibleArgument: anObject  (anObject = '' in that case)
valueWithPossibleArgument: anArg
	self numArgs = 0 ifTrue: [^self value].
	self numArgs = 1 ifTrue: [^self value: anArg].
..

In that case sending numArgs to the MessageSend instance gives you 1,
So it is using value: '' instead of value.
Thats the reason why the argument "aNode" is lost!

- Removed the MessageSend refs in WATRee



Issue attribute updates:
	Status: Fixed

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


More information about the seaside-dev mailing list