[Pkg] The Trunk: Multilingual-fbs.157.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 25 15:42:06 UTC 2013


Frank Shearar uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-fbs.157.mcz

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

Name: Multilingual-fbs.157
Author: fbs
Time: 1 January 2013, 9:48:03.594 pm
UUID: 4241eb6e-9f45-4b21-b94e-430a14e505d2
Ancestors: Multilingual-ul.156

Lars' fix for Mantis report #7709: Image Segments can't be written to file anymore.

=============== Diff against Multilingual-ul.156 ===============

Item was changed:
  SystemOrganization addCategory: #'Multilingual-Display'!
- SystemOrganization addCategory: #'Multilingual-Editor'!
  SystemOrganization addCategory: #'Multilingual-Encodings'!
  SystemOrganization addCategory: #'Multilingual-ImmPlugin'!
  SystemOrganization addCategory: #'Multilingual-Languages'!
  SystemOrganization addCategory: #'Multilingual-Scanning'!
  SystemOrganization addCategory: #'Multilingual-TextConversion'!

Item was changed:
  ----- Method: MultiByteFileStream>>nextPutAll: (in category 'public') -----
  nextPutAll: aCollection
  
  	(self isBinary or: [aCollection class == ByteArray]) ifTrue: [
  		^ super nextPutAll: aCollection.
  	].
+ 	aCollection class == WordArrayForSegment ifTrue: [
+ 		^ super nextPutAll: (Bitmap withAll: aCollection) asByteArray
+ 	].
  	^converter nextPutAll: aCollection toStream: self!



More information about the Packages mailing list