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

Rein, Patrick Patrick.Rein at hpi.de
Thu Nov 1 15:00:03 UTC 2018


Hi everyone,

just realized the plan was to go to 60Deprecated directly. I will change this immediately. Disregard these commits :)

Bests
Patrick

________________________________________
From: Squeak-dev <squeak-dev-bounces at lists.squeakfoundation.org> on behalf of commits at source.squeak.org <commits at source.squeak.org>
Sent: Thursday, November 1, 2018 15:49
To: squeak-dev at lists.squeakfoundation.org; packages at lists.squeakfoundation.org
Subject: [squeak-dev] The Trunk: 53Deprecated-pre.2.mcz

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