The Trunk: MorphicExtras-mt.161.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-mt.161.mcz

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

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

Name: MorphicExtras-mt.161
Author: mt
Time: 24 April 2015, 11:08:01.545 am
UUID: 99122fd0-6c7b-4643-b2db-a67f764bb15f
Ancestors: MorphicExtras-mt.160

Added missing super calls to ease debugging.

Note: We may remove that minHeight instVar and reuse Morph state.

=============== Diff against MorphicExtras-mt.160 ===============

Item was changed:
  ----- Method: EmbeddedWorldBorderMorph>>minHeight: (in category 'layout') -----
  minHeight: anInteger
 
+ super minHeight: anInteger.
+ minHeight := anInteger.!
- minHeight := anInteger!

Item was changed:
  ----- Method: EmbeddedWorldBorderMorph>>minWidth: (in category 'layout') -----
  minWidth: anInteger
 
+ super minWidth: anInteger.
+ minWidth := anInteger.!
- minWidth := anInteger!