The Trunk: SMLoader-nice.38.mcz

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

The Trunk: SMLoader-nice.38.mcz

commits-2
Nicolas Cellier uploaded a new version of SMLoader to project The Trunk:
http://source.squeak.org/trunk/SMLoader-nice.38.mcz

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

Name: SMLoader-nice.38
Author: nice
Time: 27 December 2009, 4:01:49 am
UUID: fd70f378-9297-4a5b-89e3-1fe7b87f01a5
Ancestors: SMLoader-gk.37

Cosmetic: move or remove a few temps inside closures

=============== Diff against SMLoader-gk.37 ===============

Item was changed:
  ----- Method: SMLoader>>addFiltersToMenu: (in category 'menus') -----
  addFiltersToMenu: aMenu
+
+ self filterSpecs do: [:filterArray | | help filterSymbol |
- | filterSymbol help |
- self filterSpecs do: [:filterArray |
  filterSymbol := filterArray second.
  help := filterArray third.
  aMenu addUpdating: #showFilterString: target: self selector: #toggleFilterState: argumentList: (Array with: filterSymbol).
  aMenu balloonTextForLastItem: help].
  aMenu addLine;
  addList: #(('uncheck all filters' uncheckFilters 'unchecks all filters so that all packages are listed'))
  !