Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.162.mcz==================== Summary ====================
Name: Tools-ar.162
Author: ar
Time: 10 January 2010, 10:34:40.094 am
UUID: 84b6db22-7091-634c-acb6-c579875dfafe
Ancestors: Tools-ar.161
Replace offerMenuFrom:shifted: by offerMenu:from:shifted: which takes an additional argument, the model to retrieve the menu from and perform the actions on.
=============== Diff against Tools-ar.161 ===============
Item was changed:
----- Method: StringHolder>>offerMenuFrom:shifted: (in category '*Tools') -----
offerMenuFrom: menuRetriever shifted: aBoolean
"Pop up a menu whose target is the receiver and whose contents are provided
by sending the menuRetriever to the receiver. The menuRetriever takes two
arguments: a menu, and a boolean representing the shift state."
+ Project current offerMenu: menuRetriever from: self shifted: aBoolean
- Project current offerMenuFrom: menuRetriever shifted: aBoolean
!