[squeak-dev] The Trunk: Tools-mt.907.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 10 09:14:53 UTC 2019


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

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

Name: Tools-mt.907
Author: mt
Time: 10 October 2019, 11:14:52.217276 am
UUID: 472b555b-0c92-4e17-8697-d9c1fc48a017
Ancestors: Tools-dtl.906

Shout styling should not depend (implicitely) on Morphic.

=============== Diff against Tools-dtl.906 ===============

Item was removed:
- ----- Method: ContextVariablesInspector>>aboutToStyle:forMorph: (in category 'styling') -----
- aboutToStyle: aStyler forMorph: aMorph
- 
- 	(super aboutToStyle: aStyler forMorph: aMorph)
- 		ifFalse: [^ false].
- 	aStyler
- 		classOrMetaClass: self doItReceiver class;
- 		context: self doItContext.
- 	^ true!

Item was added:
+ ----- Method: ContextVariablesInspector>>aboutToStyle:requestor: (in category 'styling') -----
+ aboutToStyle: aStyler requestor: anObject
+ 
+ 	(super aboutToStyle: aStyler requestor: anObject)
+ 		ifFalse: [^ false].
+ 	aStyler
+ 		classOrMetaClass: self doItReceiver class;
+ 		context: self doItContext.
+ 	^ true!

Item was removed:
- ----- Method: Inspector>>aboutToStyle:forMorph: (in category 'styling') -----
- aboutToStyle: aStyler forMorph: aMorph
- 
- 	(aMorph knownName = #valuePane and: [shouldStyleValuePane not])
- 		ifTrue: [^ false].
- 	
- 	aStyler 
- 		classOrMetaClass: object class;
- 		parseAMethod: false.
- 	^true!

Item was added:
+ ----- Method: Inspector>>aboutToStyle:requestor: (in category 'styling') -----
+ aboutToStyle: aStyler requestor: anObject
+ 
+ 	(anObject knownName = #valuePane and: [shouldStyleValuePane not])
+ 		ifTrue: [^ false].
+ 	
+ 	aStyler 
+ 		classOrMetaClass: object class;
+ 		parseAMethod: false.
+ 	^true!



More information about the Squeak-dev mailing list