diff options
author | David Schweinsberg <[email protected]> | 2007-07-26 11:15:06 +0000 |
---|---|---|
committer | David Schweinsberg <[email protected]> | 2007-07-26 11:15:06 +0000 |
commit | adea4488ba39ab3fd80a9064d1839a998e445b31 (patch) | |
tree | 99c7388a8d9eec4d40864adcdb2ad8c382743e11 | |
parent | ff26d1addccbc76e7cd5cc92283eef355b313e1e (diff) |
Passing null indicies to CharstringType2 just to make it compile at the moment.
-rw-r--r-- | src/net/java/dev/typecast/ot/table/CffTable.java | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/net/java/dev/typecast/ot/table/CffTable.java b/src/net/java/dev/typecast/ot/table/CffTable.java index 648d2ec..2bd0cec 100644 --- a/src/net/java/dev/typecast/ot/table/CffTable.java +++ b/src/net/java/dev/typecast/ot/table/CffTable.java @@ -1,5 +1,5 @@ /* - * $Id: CffTable.java,v 1.3 2007-02-21 12:25:19 davidsch Exp $ + * $Id: CffTable.java,v 1.4 2007-07-26 11:15:06 davidsch Exp $ * * Typecast - The Font Development Environment * @@ -32,12 +32,12 @@ import java.util.Hashtable; /** * Compact Font Format Table - * @version $Id: CffTable.java,v 1.3 2007-02-21 12:25:19 davidsch Exp $ + * @version $Id: CffTable.java,v 1.4 2007-07-26 11:15:06 davidsch Exp $ * @author <a href="mailto:[email protected]">David Schweinsberg</a> */ public class CffTable implements Table { - private class Dict { + public class Dict { private Dictionary<Integer, Object> _entries = new Hashtable<Integer, Object>(); private int[] _data; @@ -180,7 +180,7 @@ public class CffTable implements Table { } } - private class Index { + public class Index { private int _count; private int _offSize; @@ -242,7 +242,7 @@ public class CffTable implements Table { } } - private class TopDictIndex extends Index { + public class TopDictIndex extends Index { protected TopDictIndex(DataInput di) throws IOException { super(di); @@ -296,7 +296,7 @@ public class CffTable implements Table { } } - private class StringIndex extends Index { + public class StringIndex extends Index { protected StringIndex(DataInput di) throws IOException { super(di); @@ -557,7 +557,9 @@ public class CffTable implements Table { _stringIndex.getString(_charsets[i].getSID(j)), _charStringsIndexArray[i].getData(), offset, - len); + len, + null, + null); } } } |