[squeak-dev] The Trunk: 45Deprecated-dtl.25.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jan 30 18:10:39 UTC 2016


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.!



More information about the Squeak-dev mailing list