The Trunk: 60Deprecated-mt.58.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-mt.58.mcz

commits-2
Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.58.mcz

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

Name: 60Deprecated-mt.58
Author: mt
Time: 14 October 2019, 7:36:29.576144 pm
UUID: 4fdd30d2-ab1c-d04a-8404-9124e3a93971
Ancestors: 60Deprecated-mt.57

Complements Morphic-mt.1569.

=============== Diff against 60Deprecated-mt.57 ===============

Item was changed:
  SystemOrganization addCategory: #'60Deprecated-Collections-Streams'!
  SystemOrganization addCategory: #'60Deprecated-Kernel-Methods'!
+ SystemOrganization addCategory: #'60Deprecated-Morphic-Pluggable Widgets'!
  SystemOrganization addCategory: #'60Deprecated-NSPlugin-System-Support'!
  SystemOrganization addCategory: #'60Deprecated-System-Support'!
  SystemOrganization addCategory: #'60Deprecated-Tools-Inspector'!
  SystemOrganization addCategory: #'60Deprecated-Tools-Menus'!

Item was added:
+ ----- Method: PluggableListMorph>>handleBasicKeys: (in category '*60Deprecated-events') -----
+ handleBasicKeys: aBoolean
+ "set whether the list morph should handle basic keys like arrow keys, or whether everything should be passed to the model"
+
+ self deprecated.
+ self handlesBasicKeys: aBoolean.!

Item was added:
+ ----- Method: PluggableListMorph>>list: (in category '*60Deprecated-initialization') -----
+ list: listOfStrings  
+
+ self deprecated: 'Use a model instead. See #getFullList.'.!

Item was added:
+ ----- Method: PluggableMultiColumnListMorph>>getListRow: (in category '*60Deprecated-accessing') -----
+ getListRow: row
+
+ self deprecated.
+ ^ self getListItem: row!