[squeak-dev] The Trunk: Morphic-mt.884.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Apr 16 09:58:32 UTC 2015


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.884.mcz

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

Name: Morphic-mt.884
Author: mt
Time: 16 April 2015, 11:58:01.659 am
UUID: eaf43389-d288-ec4f-bdcc-579e73e048e6
Ancestors: Morphic-mt.883

Fix ColorMappingCanvas to delegate the generic double-dispatch to its adapted canvas.

Why? This is an adapter who should -- actually -- not be in the Canvas hierarchy at all. But this is how it is at the moment ... *sigh*

=============== Diff against Morphic-mt.883 ===============

Item was added:
+ ----- Method: ColorMappingCanvas>>draw: (in category 'drawing-general') -----
+ draw: anObject
+ 	^ myCanvas draw: anObject!

Item was added:
+ ----- Method: ColorMappingCanvas>>drawMorph: (in category 'drawing-general') -----
+ drawMorph: anObject
+ 	^ myCanvas drawMorph: anObject!

Item was added:
+ ----- Method: ColorMappingCanvas>>fullDraw: (in category 'drawing-general') -----
+ fullDraw: anObject
+ 	^ myCanvas fullDraw: anObject!

Item was added:
+ ----- Method: ColorMappingCanvas>>fullDrawMorph: (in category 'drawing-general') -----
+ fullDrawMorph: anObject
+ 	^ myCanvas fullDrawMorph: anObject!



More information about the Squeak-dev mailing list