[squeak-dev] The Inbox: System-laza.459.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Nov 3 07:14:28 UTC 2011


Alexander Lazarević uploaded a new version of System to project The Inbox:
http://source.squeak.org/inbox/System-laza.459.mcz

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

Name: System-laza.459
Author: laza
Time: 3 November 2011, 8:13:48.899 am
UUID: 7bf95c73-93c1-d044-b91e-75e6e1456825
Ancestors: System-laza.458

Make SystemOrganizer trigger a notification on adding a category

=============== Diff against System-laza.458 ===============

Item was removed:
- ----- Method: SystemOrganizer>>addCategory: (in category 'accessing') -----
- addCategory: newCategory
- 	| r |
- 	r := super addCategory: newCategory.
- 	SystemChangeNotifier uniqueInstance classCategoryAdded: newCategory.
- 	^ r!

Item was added:
+ ----- Method: SystemOrganizer>>addCategory:before: (in category 'accessing') -----
+ addCategory: catString before: nextCategory
+ 	SystemChangeNotifier uniqueInstance doSilently: [
+ 		super addCategory: catString before: nextCategory].
+ 	SystemChangeNotifier uniqueInstance classCategoryAdded: catString.
+ !




More information about the Squeak-dev mailing list