[squeak-dev] The Trunk: 53Deprecated-pre.2.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Nov 1 14:49:39 UTC 2018


Patrick Rein uploaded a new version of 53Deprecated to project The Trunk:
http://source.squeak.org/trunk/53Deprecated-pre.2.mcz

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

Name: 53Deprecated-pre.2
Author: pre
Time: 1 November 2018, 3:49:25.914943 pm
UUID: 67b0129c-faea-074b-9be1-bea4e0e444c2
Ancestors: 53Deprecated-pre.1

Deprecates two drag and drop menu methods. One broke with the naming convention for menu item selectors and the other is unnecessary as the superclass already implements the same behavior.

=============== Diff against 53Deprecated-pre.1 ===============

Item was added:
+ ----- Method: Morph>>toggleDragNDrop (in category '*53Deprecated-dropping/grabbing') -----
+ toggleDragNDrop
+ 	"Toggle this morph's ability to add and remove morphs via drag-n-drop."
+ 
+ 	self enableDragNDrop: self dragNDropEnabled not.
+ !

Item was added:
+ ----- Method: PasteUpMorph>>isOpenForDragNDropString (in category '*53Deprecated-menu & halo') -----
+ isOpenForDragNDropString
+ 	"Answer the string to be shown in a menu to represent the  
+ 	open-to-drag-n-drop status"
+ 	^ (self dragNDropEnabled
+ 		ifTrue: ['<on>']
+ 		ifFalse: ['<off>'])
+ 		, 'open to drag & drop' translated!



More information about the Squeak-dev mailing list