The Trunk: MorphicExtras-fbs.128.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-fbs.128.mcz

commits-2
Frank Shearar uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-fbs.128.mcz

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

Name: MorphicExtras-fbs.128
Author: fbs
Time: 30 November 2013, 10:55:47.146 am
UUID: 44325252-0685-7e4c-878d-d6600bac5532
Ancestors: MorphicExtras-fbs.127

Deprecate MorphicExtras' selector mangling utilities - they've been moved to MorphicExtras, on String and Symbol.

=============== Diff against MorphicExtras-fbs.127 ===============

Item was changed:
  ----- Method: FlapTab>>adjustPositionVisAVisFlap (in category 'positioning') -----
  adjustPositionVisAVisFlap
  | sideToAlignTo opposite |
  opposite := Utilities oppositeSideTo: edgeToAdhereTo.
  sideToAlignTo := inboard
  ifTrue: [opposite]
  ifFalse: [edgeToAdhereTo].
+ self perform: sideToAlignTo asSimpleSetter with: (referent perform: opposite)!
- self perform: (Utilities simpleSetterFor: sideToAlignTo) with: (referent perform: opposite)!

Item was added:
+ ----- Method: Symbol>>asSimpleSetter (in category '*MorphicExtras-Flaps') -----
+ asSimpleSetter
+ ^ (self, ':') asSymbol!