M class&gt;&gt;doesNotUnderstand: aMessage ^aMessage asMessageSend !<div><br></div><div>( ( M som:eMe:ssa:ge: inputs ) receiver: obj )<br><br>On Monday, September 26, 2016, Kjell Godo &lt;<a href="mailto:squeaklist@gmail.com">squeaklist@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">M&gt;&gt;doesNotUnderstand: aMessage ^aMessage asMessageSend !<div><br></div><div>( M <wbr>handUserSorterMorphForProjectN<wbr>amed: nil )&quot;&lt;---[ easy way to make a MessageSend ]&quot;</div>...<br><div>     sendTo: obj<br><br>On Monday, September 26, 2016,  &lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;commits@source.squeak.org&#39;);" target="_blank">commits@source.squeak.org</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Tim Felgentreff uploaded a new version of EToys to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/EToys-tfel.253.mcz" target="_blank">http://source.squeak.org/trunk<wbr>/EToys-tfel.253.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: EToys-tfel.253<br>
Author: tfel<br>
Time: 26 September 2016, 11:40:48.856552 am<br>
UUID: a00694aa-7017-b444-a8d0-6671ec<wbr>171efd<br>
Ancestors: EToys-tfel.252<br>
<br>
delete the project saving morph before saving<br>
<br>
=============== Diff against EToys-tfel.252 ===============<br>
<br>
Item was changed:<br>
  ----- Method: EToyProjectDetailsMorph&gt;&gt;doOK (in category &#39;utilities&#39;) -----<br>
  doOK<br>
        &quot;User hit the ok button in the project-info dialog.  Store the updated project-info back in the project. Call the message-send residing in the receiver&#39;s actionBlock to carry out any subsequent desired task.  Note that this method sets the &#39;arguments&#39; of the message-send in the actionBlock&quot;<br>
<br>
        | args actionSelector  |<br>
        self validateTheProjectName ifFalse: [^false].<br>
        projectDetails := self copyOutDetails.<br>
<br>
        theProject acceptProjectDetails: projectDetails.  &quot;Make sure project &amp; world feel the changes&quot;<br>
+<br>
+       self delete.<br>
-<br>
        actionBlock isMessageSend &quot;new way -- hopefully all cases&quot;<br>
                ifTrue:  &quot;please excuse this ugly, non-modular code...&quot;<br>
                        [actionSelector := actionBlock selector.<br>
                        args := (actionSelector = #handUserSorterMorphForProject<wbr>Named:)<br>
                                ifTrue:<br>
                                        [{theProject name}]<br>
                                ifFalse:<br>
                                        [actionSelector numArgs = 0<br>
                                                ifTrue:<br>
                                                        [nil]<br>
                                                ifFalse:<br>
                                                        [Array with: projectDetails]].<br>
                        actionBlock arguments: args.<br>
                        actionBlock value]<br>
<br>
                ifFalse:  &quot;Old way, with actionBlock actually a block of one argument.  This should no longer occur.&quot;<br>
+                       [actionBlock value: projectDetails].!<br>
-                       [actionBlock value: projectDetails].<br>
-<br>
-       self delete!<br>
<br>
Item was changed:<br>
  ----- Method: EToyProjectQueryMorph&gt;&gt;doOK (in category &#39;ok button hit&#39;) -----<br>
  doOK<br>
        &quot;User hit the ok button in the project-query dialog.&quot;<br>
<br>
        | details |<br>
        details := self copyOutDetails.<br>
<br>
+       self delete.<br>
        actionBlock isMessageSend &quot;new way -- hopefully all cases&quot;<br>
                ifTrue:<br>
                        [actionBlock arguments: {details. actionBlock arguments second}.<br>
                        actionBlock value]<br>
<br>
                ifFalse:  &quot;Old way, with actionBlock actually a block of one argument.  This should no longer occur.&quot;<br>
+                       [actionBlock value: details].!<br>
-                       [actionBlock value: details].<br>
-<br>
-       self delete!<br>
<br>
<br>
</blockquote></div>
</blockquote></div>