David T. Lewis uploaded a new version of 45Deprecated to project The Trunk:
http://source.squeak.org/trunk/45Deprecated-dtl.25.mcz==================== Summary ====================
Name: 45Deprecated-dtl.25
Author: dtl
Time: 30 January 2016, 1:09:40.218245 pm
UUID: a066032a-773a-497f-86e7-6a48921e3d7c
Ancestors: 45Deprecated-fbs.24
Move methods from InputSensor to EventSensor to enable InputSensor removal.
=============== Diff against 45Deprecated-fbs.24 ===============
Item was added:
+ ----- Method: EventSensor>>currentCursor (in category '*45Deprecated') -----
+ currentCursor
+ "The current cursor is maintained in class Cursor."
+ self deprecated: 'Use Cursor >> #currentCursor'.
+ ^ Cursor currentCursor!
Item was added:
+ ----- Method: EventSensor>>currentCursor: (in category '*45Deprecated') -----
+ currentCursor: newCursor
+ "The current cursor is maintained in class Cursor."
+ self deprecated: 'Use Cursor >> #currentCursor:'.
+ Cursor currentCursor: newCursor.!
Item was removed:
- ----- Method: InputSensor>>currentCursor (in category '*45Deprecated') -----
- currentCursor
- "The current cursor is maintained in class Cursor."
- self deprecated: 'Use Cursor >> #currentCursor'.
- ^ Cursor currentCursor!
Item was removed:
- ----- Method: InputSensor>>currentCursor: (in category '*45Deprecated') -----
- currentCursor: newCursor
- "The current cursor is maintained in class Cursor."
- self deprecated: 'Use Cursor >> #currentCursor:'.
- Cursor currentCursor: newCursor.!