[Pkg] SystemEditor: SystemEditor-mtf.125.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Wed Oct 8 00:00:10 UTC 2008


A new version of SystemEditor was added to project SystemEditor:
http://www.squeaksource.com/SystemEditor/SystemEditor-mtf.125.mcz

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

Name: SystemEditor-mtf.125
Author: mtf
Time: 6 October 2008, 1:51:23 pm
UUID: b0d09004-12ee-4beb-9c69-711083d3894a
Ancestors: SystemEditor-mtf.124

Class organization was not being updated if methods were removed from a class, but not added

=============== Diff against SystemEditor-mtf.124 ===============

Item was changed:
  ----- Method: OrganizationEditor>>edRequiresBuild (in category 'building') -----
  edRequiresBuild
+ 	^ isDirty or: [classEditor isMethodsChanged]!
- 	classEditor edMethodsDo: [:ea | ^ true].
- 	^ isDirty!

Item was added:
+ ----- Method: ClassDescriptionEditor>>isMethodsChanged (in category 'testing') -----
+ isMethodsChanged
+ 	methods ifNil: [^ false].
+ 	^ methods isChanged!

Item was added:
+ ----- Method: OldMetaclassEditor>>isMethodsChanged (in category 'testing') -----
+ isMethodsChanged
+ 	methods ifNil: [^ false].
+ 	^ methods isChanged!

Item was added:
+ ----- Method: DictionaryEditor>>isChanged (in category 'testing') -----
+ isChanged
+ 	^ additions notEmpty or: [removals notEmpty]!



More information about the Packages mailing list