Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1505.mcz==================== Summary ====================
Name: Morphic-mt.1505
Author: mt
Time: 15 August 2019, 11:54:33.818945 am
UUID: 1ad0043a-994e-374a-b194-ed4562267257
Ancestors: Morphic-mt.1504
Adds compatibility protocol to convert SimpleButtonMorph to PluggableButtonMorph.
#actionSelector: is already in PluggableButtonMorphPlus and the instVar is called that way.
#target: is the intended callback from the Morph base class.
=============== Diff against Morphic-mt.1504 ===============
Item was added:
+ ----- Method: PluggableButtonMorph>>actionSelector: (in category 'accessing') -----
+ actionSelector: aSymbol
+ "Set actionSelector to be the action defined by aSymbol."
+
+ actionSelector := aSymbol.
+ !
Item was added:
+ ----- Method: PluggableButtonMorph>>target: (in category 'accessing') -----
+ target: anObject
+
+ self model: anObject.!