Thanks for the tips and pointers.<br><br><div class="gmail_quote">On 19 March 2011 12:13, Ralph Johnson <span dir="ltr">&lt;<a href="mailto:johnson@cs.uiuc.edu">johnson@cs.uiuc.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Here is what I can tell.<br>
<br>
You are using Seaside.  Somewhere in the page you are using a<br>
TreeReportColumn, and when you try to display the page, it is<br>
expecting a block with one argument (that is why it sent #value:) but<br>
got a block with a different number of arguments.  If I were debugging<br>
this, I would look at that block because probably it is something you<br>
wrote.  When you see it, you&#39;ll probably say &quot;Oh, sure, that block<br>
should take an argument&quot;, though perhaps you will say &quot;Why should<br>
*that* block take an argument?&quot;  but in either case, it will probably<br>
be a block that you wrote.<br>
<br>
Note that there is no class &quot;Block&quot;, what we call a block when we are<br>
looking at a Smalltalk metod is really an instance of class<br>
BlockClosure.<br>
<div class="im"><br>
&gt; BlockClosure(Object)&gt;&gt;error:<br>
&gt; BlockClosure&gt;&gt;numArgsError:<br>
&gt; BlockClosure&gt;&gt;value:<br>
&gt; SUTreeReportColumn&gt;&gt;render:on:<br>
&gt; [] in [] in SUTreeReportColumn&gt;&gt;render:indent:on:<br>
</div><div><div></div><div class="h5">_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br>