Changeset 702

Show
Ignore:
Timestamp:
02/24/10 19:01:50 (5 months ago)
Author:
tal
Message:
Mistakes.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • applications/Area51/trunk/Lib/area51Lib/emptyGlyphsOutlineCompiler.py

    r379 r702  
    1010    def makeUnicodeToGlyphNameMapping(self): 
    1111        mapping = {} 
    12         for uniValue, glyphNames in self.font.unicodeData.items(): 
     12        for uniValue, glyphNames in self.ufo.unicodeData.items(): 
    1313            mapping[uniValue] = glyphNames[0] 
    1414        return mapping 
    1515 
    1616    def getCharStringForGlyph(self, glyph, private, globalSubrs): 
    17         T2CharString(program=[0, "endchar"], private=private, globalSubrs=globalSubrs) 
     17        charString = T2CharString(program=[0, "endchar"], private=private, globalSubrs=globalSubrs) 
    1818        return charString 
    1919