'From TeaSqueak3.2 of 19 September 2002 [latest update: #448] on 19 July 2003 at 8:43:01 pm'! "Change Set: FixColorPicker-ar Date: 19 July 2003 Author: Andreas Raab This fixes a small bug when you delete a ColorPickerMorph. "! !ColorPickerMorph methodsFor: 'private' stamp: 'ar 7/19/2003 20:40'! argumentsWith: aColor "Return an argument array appropriate to this action selector" | nArgs | nArgs _ selector ifNil:[0] ifNotNil:[selector numArgs]. nArgs = 0 ifTrue:[^#()]. nArgs = 1 ifTrue:[^ {aColor}]. nArgs = 2 ifTrue:[^ {aColor. sourceHand}]. nArgs = 3 ifTrue:[^ {aColor. argument. sourceHand}]. ! !