[squeak-dev] The Trunk: Morphic-pre.1707.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Oct 26 17:38:17 UTC 2020


Patrick Rein uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-pre.1707.mcz

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

Name: Morphic-pre.1707
Author: pre
Time: 26 October 2020, 6:37:05.943595 pm
UUID: dde21a70-157a-7943-93ca-2ac63b8be1af
Ancestors: Morphic-mt.1706

Deprecates five methods that should be deprecated according to their method comments.

=============== Diff against Morphic-mt.1706 ===============

Item was removed:
- ----- Method: Canvas>>image:at: (in category 'drawing-obsolete') -----
- image: aForm at: aPoint
- 	"Note: This protocol is deprecated. Use #paintImage: instead."
- 	self image: aForm
- 		at: aPoint
- 		sourceRect: aForm boundingBox
- 		rule: Form paint.
- !

Item was removed:
- ----- Method: Canvas>>image:at:rule: (in category 'drawing-obsolete') -----
- image: aForm at: aPoint rule: combinationRule
- 	"Note: This protocol is deprecated. Use one of the explicit image drawing messages (#paintImage, #drawImage) instead."
- 	self image: aForm
- 		at: aPoint
- 		sourceRect: aForm boundingBox
- 		rule: combinationRule.
- !

Item was removed:
- ----- Method: Canvas>>imageWithOpaqueWhite:at: (in category 'drawing-obsolete') -----
- imageWithOpaqueWhite: aForm at: aPoint
- 	"Note: This protocol is deprecated. Use #drawImage: instead"
- 	self image: aForm
- 		at: aPoint
- 		sourceRect: (0 at 0 extent: aForm extent)
- 		rule: Form over.
- !

Item was removed:
- ----- Method: Morph>>fullCopy (in category 'copying') -----
- fullCopy
- 	"Deprecated, but maintained for backward compatibility with existing code (no senders in the base 3.0 image).   Calls are revectored to #veryDeepCopy, but note that #veryDeepCopy does not do exactly the same thing that the original #fullCopy did, so beware!!"
- 
- 	^ self veryDeepCopy!

Item was removed:
- ----- Method: NewParagraph>>lineIndexForCharacter: (in category 'private') -----
- lineIndexForCharacter: characterIndex
- 	"Deprecated"
- 	
- 	^self lineIndexOfCharacterIndex: characterIndex !



More information about the Squeak-dev mailing list