[squeak-dev] The Trunk: MorphicExtras-mt.161.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Apr 24 09:08:16 UTC 2015


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!



More information about the Squeak-dev mailing list