aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java')
-rw-r--r--src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java b/src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java
index 0cf915a0fe..380131a653 100644
--- a/src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java
+++ b/src/com/itmill/toolkit/tests/featurebrowser/FeatureEmbedded.java
@@ -5,7 +5,6 @@
package com.itmill.toolkit.tests.featurebrowser;
import com.itmill.toolkit.terminal.ClassResource;
-import com.itmill.toolkit.terminal.Sizeable;
import com.itmill.toolkit.ui.Component;
import com.itmill.toolkit.ui.Embedded;
import com.itmill.toolkit.ui.Form;
@@ -40,11 +39,11 @@ public class FeatureEmbedded extends Feature {
new Integer(Embedded.TYPE_IMAGE),
new Integer(Embedded.TYPE_OBJECT) }, new Object[] { "Image",
"Object" });
- final Object[] units = new Object[Sizeable.UNIT_SYMBOLS.length];
- final Object[] symbols = new Object[Sizeable.UNIT_SYMBOLS.length];
+ final Object[] units = new Object[Embedded.UNIT_SYMBOLS.length];
+ final Object[] symbols = new Object[Embedded.UNIT_SYMBOLS.length];
for (int i = 0; i < units.length; i++) {
units[i] = new Integer(i);
- symbols[i] = Sizeable.UNIT_SYMBOLS[i];
+ symbols[i] = Embedded.UNIT_SYMBOLS[i];
}
ap.replaceWithSelect("heightUnits", units, symbols);
ap.replaceWithSelect("widthUnits", units, symbols);