From: adam Date: Fri, 28 Jan 2005 18:35:39 +0000 (+0000) Subject: make i2 visible outside AWT.java X-Git-Tag: 01-July-2005~12 X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=3419f19eae26a68874ff4c9eb56e93c7d84b93a1;hp=467c56cf21b99b367b3803e4283ece55c85e0d07 make i2 visible outside AWT.java darcs-hash:20050128183539-5007d-a7f782e4dfe610871cdd0db3da092bf989b20e88.gz --- diff --git a/src/org/ibex/plat/AWT.java b/src/org/ibex/plat/AWT.java index fb31bd9..9ca0366 100644 --- a/src/org/ibex/plat/AWT.java +++ b/src/org/ibex/plat/AWT.java @@ -120,8 +120,8 @@ public class AWT extends JVM { protected org.ibex.graphics.Font.Glyph _createGlyph(org.ibex.graphics.Font f, char c) { return new AWTGlyph(f, c); } protected static class AWTGlyph extends org.ibex.graphics.Font.Glyph { - private Image i = null; - private Image i2 = null; + Image i = null; + Image i2 = null; private static ColorModel cmodel = new DirectColorModel(32, 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000); // this doesn't work on Win32 because the JVM is broken