X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FBox.java;fp=src%2Forg%2Fxwt%2FBox.java;h=df1cfd60a3592e7ce5b74884d8ece82723356573;hb=ef61babe77a94eba181c95a52c0069a612276dff;hp=9dbd0ab42b5ebe42ee41acafc781235472d5ca46;hpb=e33203c725fe48229d5286d476f17e4d42c425d6;p=org.ibex.core.git diff --git a/src/org/xwt/Box.java b/src/org/xwt/Box.java index 9dbd0ab..df1cfd6 100644 --- a/src/org/xwt/Box.java +++ b/src/org/xwt/Box.java @@ -68,7 +68,7 @@ public final class Box extends JSScope implements Scheduler.Task { static { Font f = null; try { f = Font.getFont((Res)Main.builtin.get("fonts/vera/Vera.ttf"), 10); } - catch(JSExn e) { Log.log(Box.class, "should never happen: "+e); } + catch(JSExn e) { Log.info(Box.class, "should never happen: "+e); } DEFAULT_FONT = f; } @@ -528,7 +528,7 @@ public final class Box extends JSScope implements Scheduler.Task { case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true); case "toback": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toBack(); } case "tofront": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toFront(); } - case "redirect": if (redirect == this) redirect = (Box)value; else Log.log(this, "redirect can only be set once"); + case "redirect": if (redirect == this) redirect = (Box)value; else Log.info(this, "redirect can only be set once"); case "font": font = value == null ? null : Font.getFont((Res)value, font == null ? 10 : font.pointsize); MARK_RESIZE; dirty(); case "fontsize": font = Font.getFont(font == null ? null : font.res, toInt(value)); MARK_RESIZE; dirty(); case "x": if (parent==null && Surface.fromBox(this)!=null) { CHECKSET_INT(x); } else { if (test(PACKED) && parent != null) return; CHECKSET_INT(x); dirty(); MARK_RESIZE; dirty(); } @@ -684,7 +684,7 @@ public final class Box extends JSScope implements Scheduler.Task { (Integer.parseInt(s.substring(3, 5), 16) << 8) | Integer.parseInt(s.substring(5, 7), 16); } catch (NumberFormatException e) { - Log.log(Box.class, "invalid color " + s); + Log.info(Box.class, "invalid color " + s); return 0; } else return 0; // FEATURE: error? @@ -821,7 +821,7 @@ public final class Box extends JSScope implements Scheduler.Task { for(Box cur = this; cur != null; cur = cur.parent) if (cur == b) { if (Log.on) Log.logJS(this, "attempt to make a node a parent of its own ancestor"); - if (Log.on) Log.log(this, "box == " + this + " ancestor == " + b); + if (Log.on) Log.info(this, "box == " + this + " ancestor == " + b); return; }