X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fxwt%2Ftranslators%2FSVG.java;h=3e2e780af0f86d78e094746368a10becc5f66817;hp=9f0bf7c5e6d5be97802c406a5379a7b94ffa611a;hb=3591b88b94a6bb378af3d4abe6eb5233ce583104;hpb=de378041d5ca2aca1a2b5a31ef15ae90a86c977f diff --git a/src/org/xwt/translators/SVG.java b/src/org/xwt/translators/SVG.java index 9f0bf7c..3e2e780 100644 --- a/src/org/xwt/translators/SVG.java +++ b/src/org/xwt/translators/SVG.java @@ -29,7 +29,7 @@ public class SVG { String align = st.nextToken(); if ("defer".equals(align)) align = st.nextToken(); if (!align.equals("none")) { - // FIXME, need to beef up XWT's align property + // FIXME, need to beef up Ibex's align property align = ""; if (align.startsWith("yMin")) align = "top"; else if (align.startsWith("yMax")) align = "bottom"; @@ -253,7 +253,7 @@ public class SVG { public void render(DoubleBuffer buf, int x, int y, int fillcolor, int strokecolor, float scaleFactor) { // FEATURE: make b double-buffered for increased performance if (b == null) { - b = new Box(t, new org.xwt.util.Vec(), new org.xwt.util.Vec(), null, 0, 0); + b = new Box(t, new org.ibex.util.Vec(), new org.ibex.util.Vec(), null, 0, 0); b.put("absolute", Boolean.TRUE); b.prerender(); t = null;