[Pkg] The Trunk: System-cwp.514.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Mar 2 07:27:47 UTC 2013


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]!



More information about the Packages mailing list