2002/10/03 23:40:09
authormegacz <megacz@xwt.org>
Fri, 30 Jan 2004 06:50:39 +0000 (06:50 +0000)
committermegacz <megacz@xwt.org>
Fri, 30 Jan 2004 06:50:39 +0000 (06:50 +0000)
darcs-hash:20040130065039-2ba56-480932e18ac436c56fd866c6b617a9cdece3179c.gz

CHANGES
src/org/xwt/XWT.java

diff --git a/CHANGES b/CHANGES
index c099b76..a5fa960 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 03-Oct megacz Box.java: fixed shrink behavior, deliver clicks to box
               first (not root), id is a readable attribute
 
+03-Oct megacz XWT.java: made recursivePrintObject public so we can
+              access it.
+
index 1544bdc..c266690 100644 (file)
@@ -440,7 +440,7 @@ public final class XWT extends JSObject {
         }
     }
 
-    private static final JSObject.JSFunction recursivePrintObject = new JSObject.JSFunction() {
+    static final JSObject.JSFunction recursivePrintObject = new JSObject.JSFunction() {
             public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException {
                 if (args == null || args.length != 1) return null;
                 recurse("", "", args[0], cx);