The Trunk: GetText-eem.26.mcz

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

The Trunk: GetText-eem.26.mcz

commits-2
Eliot Miranda uploaded a new version of GetText to project The Trunk:
http://source.squeak.org/trunk/GetText-eem.26.mcz

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

Name: GetText-eem.26
Author: eem
Time: 6 February 2013, 1:12:06.471 pm
UUID: f1f7cd8d-ea16-4215-8574-2767498da59f
Ancestors: GetText-nice.25

Fix clearAllDomains.  It used to use the non-existent
allCompiledMethodsDo:.

=============== Diff against GetText-nice.25 ===============

Item was changed:
  ----- Method: TextDomainManager class>>clearAllDomains (in category 'private') -----
  clearAllDomains
+ "TextDomainManager clearAllDomains"
+ self systemNavigation allBehaviorsDo:
+ [:b|
+ b selectorsAndMethodsDo:
+ [:s :m |
+ m removeProperty: self textDomainProperty ifAbsent: []]]!
- SystemNavigation default
- allCompiledMethodDo: [:each | each
- removeProperty: self textDomainProperty
- ifAbsent: []] !