[squeak-dev] The Trunk: Files-mt.191.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Feb 10 13:41:22 UTC 2022


Marcel Taeumel uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-mt.191.mcz

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

Name: Files-mt.191
Author: mt
Time: 10 February 2022, 2:41:21.317689 pm
UUID: 996c4d2c-55d5-794e-845e-fb97c786bccd
Ancestors: Files-ct.189

Fix typo. Still investigating the drop-files issue on macOS and Ubuntu...

=============== Diff against Files-ct.189 ===============

Item was changed:
  ----- Method: FileDirectory class>>dropFilesAndDirectories: (in category 'dnd requests') -----
  dropFilesAndDirectories: numFiles
  	"Answer a sequence of directories and/or streams for a drop event.
+ 	 The collection may be empty."
- 	 The collect5ion may be empty."
  	^(1 to: numFiles)
  		collect:
  			[:index |
  			(self requestDropDirectory: index) ifNil:
  				[FileStream requestDropStream: index]]
  		thenSelect: [:directoryOrStreamOrNil| directoryOrStreamOrNil notNil]!



More information about the Squeak-dev mailing list