The Trunk: Tools-ul.661.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tools-ul.661.mcz

commits-2
Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ul.661.mcz

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

Name: Tools-ul.661
Author: ul
Time: 9 January 2016, 10:18:44.095613 pm
UUID: bdac8e9b-8841-40ce-9d6a-1be083bcaca7
Ancestors: Tools-eem.660

Added shout support to VersionsBrowser.

=============== Diff against Tools-eem.660 ===============

Item was added:
+ ----- Method: ClassCommentVersionsBrowser>>aboutToStyle: (in category 'contents') -----
+ aboutToStyle: aStyler
+
+ ^false!

Item was added:
+ ----- Method: VersionsBrowser>>aboutToStyle: (in category 'contents') -----
+ aboutToStyle: aStyler
+
+ "Style in source view, or when there's nothing to diff with."
+ (self isModeStyleable or: [ listIndex = list size ]) ifFalse: [ ^false ].
+ aStyler
+ classOrMetaClass: classOfMethod;
+ parseAMethod: true.
+ ^true
+ !