The Trunk: System-cwp.514.mcz

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

The Trunk: System-cwp.514.mcz

commits-2
Colin Putney uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-cwp.514.mcz

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

Name: System-cwp.514
Author: cwp
Time: 1 March 2013, 11:25:26.111 pm
UUID: 714a404b-f27e-4ed5-9743-4be2d25ebe6b
Ancestors: System-nice.513

Make SystemOrganizer add categories even if it's not the global SystemOrganization.

=============== Diff against System-nice.513 ===============

Item was changed:
  ----- Method: SystemOrganizer>>addCategory:before: (in category 'accessing') -----
  addCategory: catString before: nextCategory
+ self == SystemOrganization
+ ifTrue:
+ [SystemChangeNotifier uniqueInstance
+ doSilently: [super addCategory: catString before: nextCategory];
+ classCategoryAdded: catString]
+ ifFalse:
+ [super addCategory: catString before: nextCategory]!
- self == SystemOrganization ifTrue: [
- SystemChangeNotifier uniqueInstance
- doSilently: [super addCategory: catString before: nextCategory];
- classCategoryAdded: catString]!