The Trunk: System-ar.229.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-ar.229.mcz

commits-2
Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.229.mcz

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

Name: System-ar.229
Author: ar
Time: 10 January 2010, 10:32:23.164 am
UUID: 20a3dce5-5c82-1f40-8c78-5476c027ee30
Ancestors: System-jcg.228

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 System-jcg.228 ===============

Item was added:
+ ----- Method: Project>>offerMenu:from:shifted: (in category 'utilities') -----

+ offerMenu: menuSelector from: aModel shifted: aBoolean

+ "Pop up a menu whose target is aModel and whose contents are provided

+ by sending the menuSelector to the model. The menuSelector takes two

+ arguments: a menu, and a boolean representing the shift state."

+

+ self subclassResponsibility!


Item was removed:
- ----- Method: Project>>offerMenuFrom:shifted: (in category 'utilities') -----

- 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."

-

- self subclassResponsibility!