MethodFinderWindow.st
changeset 3774 271887d2ed74
parent 3773 e51451a38ba0
child 3777 bc17ad12cef0
equal deleted inserted replaced
3773:e51451a38ba0 3774:271887d2ed74
  1028 !MethodFinderWindow methodsFor:'actions'!
  1028 !MethodFinderWindow methodsFor:'actions'!
  1029 
  1029 
  1030 clear
  1030 clear
  1031     "Reset the contents of all the outputs."
  1031     "Reset the contents of all the outputs."
  1032 
  1032 
  1033     receiverEditor contents:nil.
  1033     receiverEditor notNil ifTrue:[
       
  1034         receiverEditor contents:nil.
       
  1035     ].
  1034     argument1Editor contents:nil.
  1036     argument1Editor contents:nil.
  1035     argument2Editor contents:nil.
  1037     argument2Editor contents:nil.
  1036     argument3Editor contents:nil.
  1038     argument3Editor contents:nil.
  1037     messageAnswerEditor contents:nil.
  1039     messageAnswerEditor contents:nil.
  1038     self resultHolder value:nil.
  1040     self resultHolder value:nil.