The Trunk: 51Deprecated-mt.32.mcz

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

The Trunk: 51Deprecated-mt.32.mcz

commits-2
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])!