The Trunk: Multilingual-nice.105.mcz

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

The Trunk: Multilingual-nice.105.mcz

commits-2
Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.105.mcz

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

Name: Multilingual-nice.105
Author: nice
Time: 22 March 2010, 7:31:07.566 pm
UUID: 9ea3fdc8-e435-a64f-85d6-8de0a0cceddd
Ancestors: Multilingual-nice.104

Let #at:put: answer the put object

=============== Diff against Multilingual-nice.104 ===============

Item was changed:
  ----- Method: TTCFont>>at:put: (in category 'private') -----
  at: char put: form
  | assoc |
  assoc := foregroundColor -> form.
  GlyphCacheData at: (GlyphCacheIndex := GlyphCacheIndex \\ GlyphCacheSize + 1) put: assoc.
+ cache at: (char asInteger + 1) put: assoc.
+ ^form!
- cache at: (char asInteger + 1) put: assoc.!

Item was changed:
  ----- Method: MultiTTCFont>>at:put: (in category 'as yet unclassified') -----
  at: char put: form
 
  | wcache |
  wcache := self cache.
  wcache replaceFrom: 1 to: wcache size - 1 with: wcache startingAt: 2.
  wcache at: wcache size
  put: (Array with: char asciiValue with: foregroundColor with: form).
+ ^form
  !