The Trunk: Tools-edc.227.mcz

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

The Trunk: Tools-edc.227.mcz

commits-2
Edgar J. De Cleene uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-edc.227.mcz

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

Name: Tools-edc.227
Author: edc
Time: 10 April 2010, 8:37:54.079 am
UUID: 589f6d80-d877-4f52-afeb-44c92d9e3960
Ancestors: Tools-ar.226

Fixed the missed menu in the build directory Tree panes about working with external servers from Squeak

=============== Diff against Tools-ar.226 ===============

Item was changed:
  ----- Method: FileList>>buildDirectoryTreeWith: (in category 'toolbuilder') -----
  buildDirectoryTreeWith: builder
  | treeSpec |
  treeSpec := builder pluggableTreeSpec new.
  treeSpec
  model: self;
  roots: #rootDirectoryList;
  hasChildren: #hasMoreDirectories:;
  getChildren: #subDirectoriesOf:;
  getSelectedPath: #selectedPath;
  setSelected: #setDirectoryTo:;
  label: #directoryNameOf:;
+ menu: #volumeMenu:;
  autoDeselect: false.
  ^treeSpec
  !