The Trunk: 60Deprecated-pre.26.mcz

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

The Trunk: 60Deprecated-pre.26.mcz

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

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

Name: 60Deprecated-pre.26
Author: pre
Time: 1 November 2018, 4:37:00.842943 pm
UUID: bc6bf5b8-7506-1646-8916-4a77bfe9101e
Ancestors: 60Deprecated-pre.25

Moves deprecated methods from 53Deprecated to 60Deprecated:

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.

Deprecates two DummyUIManager methods which are not provided anymore by UIManagers

=============== Diff against 60Deprecated-pre.25 ===============

Item was added:
+ ----- Method: DummyUIManager>>fontFromUser: (in category '*60Deprecated') -----
+ fontFromUser: priorFont
+ self error: 'No user response possible'!

Item was added:
+ ----- Method: DummyUIManager>>openPluggableFileListLabel:in: (in category '*60Deprecated') -----
+ openPluggableFileListLabel: aString in: aWorld
+ "PluggableFileList is being deprecated and this can go away soon"
+ "This method is not used anymore in 5.2 by any system classes and seems to have been
+ renamed to openPluggableFileList:label:in:"
+ ^nil!

Item was added:
+ ----- Method: Morph>>toggleDragNDrop (in category '*60Deprecated-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 '*60Deprecated-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!