The Trunk: MonticelloConfigurations-fbs.110.mcz

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

The Trunk: MonticelloConfigurations-fbs.110.mcz

commits-2
Frank Shearar uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-fbs.110.mcz

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

Name: MonticelloConfigurations-fbs.110
Author: fbs
Time: 23 April 2013, 4:25:51.123 pm
UUID: 01911939-daaf-4f4a-a71e-0c8ecdb0e822
Ancestors: MonticelloConfigurations-fbs.109

The #ifNotNil: protects against the user abandoning the action.

=============== Diff against MonticelloConfigurations-fbs.109 ===============

Item was changed:
  ----- Method: MCConfigurationBrowser>>updateMenu (in category 'actions') -----
  updateMenu
  | action |
  action := UIManager default
  chooseFrom: #('update all from image' 'update all from repositories')
  values: #(#updateFromImage #updateFromRepositories).
+ action ifNotNil: [self perform: action].!
-
- self perform: action.!