[squeak-dev] The Trunk: Collections-mt.962.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Nov 25 10:50:57 UTC 2021


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

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

Name: Collections-mt.962
Author: mt
Time: 25 November 2021, 11:50:55.017354 am
UUID: 3826da22-e39d-2a4a-ada1-95f8f67c85fd
Ancestors: Collections-pre.961

Tools-mt.1075

=============== Diff against Collections-pre.961 ===============

Item was added:
+ ----- Method: TranscriptStream>>saveContents:accessMode: (in category 'model protocol') -----
+ saveContents: stringContents accessMode: accessMode
+ 	"Interactive callback from TextEditor. See commentary in Model class."
+ 
+ 	^ (Project uiManager
+ 		saveFilenameRequest: 'Save text contents in file...'
+ 		initialAnswer: 'Transcript.text')
+ 			ifEmpty: [false]
+ 			ifNotEmpty: [:fileName |
+ 				Model new
+ 					saveContents: stringContents
+ 					onFileNamed: fileName
+ 					accessMode: accessMode].!



More information about the Squeak-dev mailing list