The Trunk: Tools-topa.930.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-topa.930.mcz

commits-2
Tobias Pape uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-topa.930.mcz

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

Name: Tools-topa.930
Author: topa
Time: 10 February 2020, 9:59:14.279253 pm
UUID: fb36c07e-a8ce-4668-8a92-4cf9f545d36b
Ancestors: Tools-mt.929

Fix use of deprecated StandardFileMenuResult by cascading.

=============== Diff against Tools-mt.929 ===============

Item was removed:
- ----- Method: PluggableFileList class>>newFileMenu: (in category 'StandardFileMenu') -----
- newFileMenu: aDirectory
-
- "For compatibility with StandardFileMenu for now, answer a StandardFileMenuResult"
- ^(self getFilePathNameDialogWithExistenceCheck)
- resultBlock: self sfmResultBlock;
- directory: aDirectory;
- yourself!

Item was removed:
- ----- Method: PluggableFileList class>>oldFileMenu: (in category 'StandardFileMenu') -----
- oldFileMenu: aDirectory
-
- "For compatibility with StandardFileMenu for now, answer a StandardFileMenuResult"
- ^(self getFilePathNameDialog)
- resultBlock: self sfmResultBlock;
- directory: aDirectory;
- yourself!

Item was removed:
- ----- Method: PluggableFileList class>>sfmResultBlock (in category 'resultBlocks') -----
- sfmResultBlock
-
- ^[:theDirectory :theFileName |
- StandardFileMenuResult directory: theDirectory name: theFileName]!