The Trunk: Multilingual-ar.127.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-ar.127.mcz

commits-2
Andreas Raab uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-ar.127.mcz

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

Name: Multilingual-ar.127
Author: ar
Time: 5 September 2010, 11:14:58.837 am
UUID: ab775e75-34a2-874d-bb17-20b7a0fe9a6e
Ancestors: Multilingual-ar.126

Restructurings to reduce package depencencies.

=============== Diff against Multilingual-ar.126 ===============

Item was changed:
  ----- Method: TTCFont class>>unload (in category 'class initialization') -----
  unload
 
+ FileServices unregisterFileReader: self!
- (FileList respondsTo: #unregisterFileReader:) ifTrue: [
- FileList unregisterFileReader: self
- ]!

Item was changed:
  ----- Method: TTCFont class>>initialize (in category 'class initialization') -----
  initialize
  "
  self initialize
  "
 
  | tt |
  self allSubInstancesDo:[:fnt| fnt flushCache].
  GlyphCacheSize := 512.
  GlyphCacheData := Array new: GlyphCacheSize.
  GlyphCacheIndex := 0.
  GlyphCacheReady := true.
 
  tt := TTFontDescription default.
  tt ifNotNil: [self newTextStyleFromTT: tt].
+ FileServices registerFileReader: self.
 
- (FileList respondsTo: #registerFileReader:) ifTrue: [
- FileList registerFileReader: self
- ].
-
  Smalltalk addToShutDownList: self.!