The Trunk: System-mt.1014.mcz

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

The Trunk: System-mt.1014.mcz

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

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

Name: System-mt.1014
Author: mt
Time: 5 April 2018, 10:22:30.974307 am
UUID: 8650d884-c761-f240-a1c7-5f04eb83a0a9
Ancestors: System-mt.1013

Adds #explore:label: to tool set to mirror #inspect:label: and hence make this Inspector/Explorer dualism more consistent.

=============== Diff against System-mt.1013 ===============

Item was added:
+ ----- Method: ToolSet class>>explore:label: (in category 'inspecting') -----
+ explore: anObject label: aString
+ "Open an explorer on the given object."
+ self default ifNil:[^self inform: 'Cannot explore - no ToolSet present'].
+ ^self default explore: anObject label: aString!