mass rename and rebranding from xwt to ibex - fixed to use ixt files
[org.ibex.core.git] / src / org / xwt / translators / SVG.java
index 9f0bf7c..3e2e780 100644 (file)
@@ -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;