The Trunk: MorphicExtras-ar.70.mcz

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

The Trunk: MorphicExtras-ar.70.mcz

commits-2
Andreas Raab uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ar.70.mcz

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

Name: MorphicExtras-ar.70
Author: ar
Time: 13 January 2010, 5:28:18.76 pm
UUID: 6637704d-9578-1e4a-b827-25b3e2324903
Ancestors: MorphicExtras-ar.68

Fix a bug from Etoys decoupling.

=============== Diff against MorphicExtras-ar.68 ===============

Item was changed:
  ----- Method: AlignmentMorphBob1>>simpleToggleButtonFor:attribute:help: (in category 'as yet unclassified') -----
  simpleToggleButtonFor: target attribute: attribute help: helpText
 
  ^(Smalltalk at: #EtoyUpdatingThreePhaseButtonMorph ifAbsent:[^Morph new])
+ checkBox
  target: target;
  actionSelector: #toggleChoice:;
  arguments: {attribute};
  getSelector: #getChoice:;
  setBalloonText: helpText;
  step
 
  !