From b8608797aa1d783234bdec1a05a0ec87288991e6 Mon Sep 17 00:00:00 2001 From: dchandler Date: Mon, 24 Nov 2003 05:59:32 +0000 Subject: [PATCH] Updated the code I used for testing to generate the file containing all glyphs in TM and all glyphs but one in TMW. --- source/org/thdl/tib/text/TibetanDocument.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/org/thdl/tib/text/TibetanDocument.java b/source/org/thdl/tib/text/TibetanDocument.java index 32a32da..52ce911 100644 --- a/source/org/thdl/tib/text/TibetanDocument.java +++ b/source/org/thdl/tib/text/TibetanDocument.java @@ -1348,7 +1348,7 @@ public class TibetanDocument extends DefaultStyledDocument { /** I used this to create a document that helped me validate the TM->TMW conversion. */ - private void insertAllTMGlyphs2(MutableAttributeSet roman) { + private void insertAllTMGlyphs2() { int font; int ord; DuffData[] equivalent = new DuffData[1]; @@ -1383,7 +1383,7 @@ public class TibetanDocument extends DefaultStyledDocument { } try { String s = " font " + (font+1) + "; ord " + ord + "\n"; - insertString(count, s, roman); + insertString(count, s, getRomanAttributeSet()); count += s.length(); } catch (BadLocationException e) { throw new Error("badness");