[Pkg] The Trunk: 45Deprecated-fbs.7.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 9 21:14:51 UTC 2013


Frank Shearar uploaded a new version of 45Deprecated to project The Trunk:
http://source.squeak.org/trunk/45Deprecated-fbs.7.mcz

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

Name: 45Deprecated-fbs.7
Author: fbs
Time: 9 July 2013, 10:14:42.918 pm
UUID: 89423ea0-0104-5a48-9f00-34d636bc8249
Ancestors: 45Deprecated-fbs.6

Deprecate InputSensor >> #currentCursor because it just delegates stuff.

=============== Diff against 45Deprecated-fbs.6 ===============

Item was added:
+ ----- Method: InputSensor>>currentCursor (in category '*45Deprecated') -----
+ currentCursor
+ 	"The current cursor is maintained in class Cursor."
+ 	self deprecated: 'Use Cursor >> #currentCursor'.
+ 	^ Cursor currentCursor!

Item was added:
+ ----- 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 Packages mailing list