A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-rss.246.mcz==================== Summary ====================
Name: Kernel-rss.246
Author: rss
Time: 7 September 2009, 5:32:56 am
UUID: 7fe7307a-5521-48de-8b99-bc35ed77f865
Ancestors: Kernel-rss.245
Object>>launchPartVia: has no senders, and was probably replaced by Object>>launchPartVia:label: which I moved to Morph class>>launchPartVia:lable:.
This change removes the (probably obsolete) method
Object>>launchPartVia:
=============== Diff against Kernel-rss.245 ===============
Item was removed:
- ----- Method: Object>>launchPartVia: (in category 'user interface') -----
- launchPartVia: aSelector
- "Obtain a morph by sending aSelector to self, and attach it to the morphic hand. This provides a general protocol for parts bins"
-
- | aMorph |
- aMorph := self perform: aSelector.
- aMorph setProperty: #beFullyVisibleAfterDrop toValue: true.
- aMorph openInHand!