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

commits at source.squeak.org commits at source.squeak.org
Wed Aug 10 16:01:20 UTC 2016


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1255.mcz

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

Name: Morphic-mt.1255
Author: mt
Time: 10 August 2016, 6:00:43.408211 pm
UUID: 44a5f88d-a694-6a45-a175-392df23e3839
Ancestors: Morphic-mt.1254

Fixes object explorer contents for OrderedDictionary.

=============== Diff against Morphic-mt.1254 ===============

Item was added:
+ ----- Method: OrderedDictionary>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+ 
+ 	^self keys replace: [ :key |
+ 		ObjectExplorerWrapper
+ 			with: (self at: key)
+ 			name: (key printString contractTo: 32)
+ 			model: self ]
+ !



More information about the Squeak-dev mailing list