[etoys-dev] Etoys: Protocols-Richo.3.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 19 18:37:58 EDT 2010


Ricardo Moran uploaded a new version of Protocols to project Etoys:
http://source.squeak.org/etoys/Protocols-Richo.3.mcz

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

Name: Protocols-Richo.3
Author: Richo
Time: 19 August 2010, 7:38:04 pm
UUID: 5dd51057-e23a-ed4d-9c61-9921989ae7d2
Ancestors: Protocols-Richo.2

* Fix for bug (SQ-753) Viewer shows only variables. ObjectWithDocumentation>>#wording tries to translate using the domains "Etoys-Tiles" and "Etoys"

=============== Diff against Protocols-Richo.2 ===============

Item was changed:
  ----- Method: ObjectWithDocumentation>>wording (in category 'accessing') -----
  wording
  	"Answer the receiver's wording"
  
  	| wording |
  	(wording := self propertyAt: #wording ifAbsent: [nil])
+ 		ifNotNil: [^wording translatedInDomain: 'Etoys-Tiles' or: 'Etoys'].
- 		ifNotNil: [^wording translatedInDomain: 'Etoys-Tiles'].
  
  	self initWordingAndDocumentation.
  	^self propertyAt: #wording ifAbsent: ['']!



More information about the etoys-dev mailing list