2003/09/23 08:24:59
[org.ibex.core.git] / src / org / xwt / Glyph.java
index fdde61d..6840f65 100644 (file)
@@ -2,6 +2,7 @@
 package org.xwt;
 import org.xwt.translators.*;
 import org.xwt.util.*;
+import org.xwt.js.*;
 
 public class Glyph {
     public char c;
@@ -19,13 +20,11 @@ public class Glyph {
         if (ret != null) return ret;
 
         // FEATURE: be smarter here
-        if (c < 256)
-            Font.renderGlyphs(res, pointsize, 0, 255, glyphCache);
-        else
-            Font.renderGlyphs(res, pointsize, (int)c, (int)c, glyphCache);
+        if (c < 256) Font.renderGlyphs(res, pointsize, 0, 255, glyphCache);
+        else Font.renderGlyphs(res, pointsize, (int)c, (int)c, glyphCache);
 
         ret = (Glyph)glyphCache.get(res, new Integer((((int)c) << 16) | pointsize));
         if (ret != null) return ret;
-        throw new RuntimeException("renderGlyphs didn't create the glyph we wanted");
+        throw new JS.Exn("error rendering glyph " + c);
     }
 }