[squeak-dev] The Trunk: Morphic-mt.1248.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 10 11:07:18 UTC 2016


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.!



More information about the Squeak-dev mailing list