2002/04/30 21:17:59
authormegacz <megacz@xwt.org>
Fri, 30 Jan 2004 06:46:39 +0000 (06:46 +0000)
committermegacz <megacz@xwt.org>
Fri, 30 Jan 2004 06:46:39 +0000 (06:46 +0000)
darcs-hash:20040130064639-2ba56-d1f4c98994c01a00a19b4ff2a4d5378a8a001a5c.gz

CHANGES
src/org/xwt/Box.java

diff --git a/CHANGES b/CHANGES
index a0e3961..297b6fc 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 
 30-Apr megacz Java12.java, Java12.xml, Java14.java: added Java14 support
 
+30-Apr megacz Box.java: made dirty() public for Java14
+
 
 
               
index f3c92d6..7456b6e 100644 (file)
@@ -549,7 +549,7 @@ public final class Box extends JSObject {
     }
 
     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
-    final void dirty(int x, int y, int w, int h) {
+    public final void dirty(int x, int y, int w, int h) {
         for(Box cur = this; cur != null; cur = cur.getParent()) {
             w = min(x + w, cur.pos(0) + cur.size(0)) - max(x, cur.pos(0));
             h = min(y + h, cur.pos(1) + cur.size(1)) - max(y, cur.pos(1));