[squeak-dev] The Trunk: 51Deprecated-mt.32.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jul 13 09:57:42 UTC 2016


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

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

Name: 51Deprecated-mt.32
Author: mt
Time: 13 July 2016, 11:57:37.183252 am
UUID: 7be81836-e59d-8945-a4ba-5a43c8e55b62
Ancestors: 51Deprecated-mt.31

Deprecate old drop handler for image streams. There is a new one in #defaultImageHandler. Still unused because we have more flexible file services for that.

=============== Diff against 51Deprecated-mt.31 ===============

Item was added:
+ ----- Method: ExternalDropHandler class>>registerStandardExternalDropHandlers (in category '*51Deprecated') -----
+ registerStandardExternalDropHandlers
+ 	"ExternalDropHandler registerStandardExternalDropHandlers"
+ 
+ 	self registeredHandlers add: (
+ 		ExternalDropHandler
+ 			type: 'image/'
+ 			extension: nil
+ 			action: [:stream :pasteUp :event |
+ 				pasteUp addMorph: (World drawingClass withForm: (Form fromBinaryStream: stream binary)) centeredNear: event position])!



More information about the Squeak-dev mailing list