The Trunk: Morphic-mt.1248.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-mt.1248.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1248.mcz

==================== Summary ====================

Name: Morphic-mt.1248
Author: mt
Time: 10 August 2016, 1:06:44.632966 pm
UUID: 001d373a-3dd0-7d4f-86c5-a962269e6eb8
Ancestors: Morphic-mt.1247

Fix minor API inconsistency between PluggableButtonMorph and PluggableButtonMorphPlus.

=============== Diff against Morphic-mt.1247 ===============

Item was added:
+ ----- Method: PluggableButtonMorph>>getLabelSelector (in category 'accessing') -----
+ getLabelSelector
+ ^ getLabelSelector!

Item was added:
+ ----- Method: PluggableButtonMorph>>getLabelSelector: (in category 'accessing') -----
+ getLabelSelector: aSymbol
+ getLabelSelector := aSymbol.
+ self update: getLabelSelector.!

Item was added:
+ ----- Method: PluggableButtonMorph>>getStateSelector (in category 'accessing') -----
+ getStateSelector
+ ^ getStateSelector!

Item was added:
+ ----- Method: PluggableButtonMorph>>getStateSelector: (in category 'accessing') -----
+ getStateSelector: aSymbol
+ getStateSelector := aSymbol.
+ self update: getStateSelector.!