aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2007-12-13 10:11:49 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2007-12-13 10:11:49 +0000
commitc4dbcb707ce15346c1c6e297eaa2e42bbe186d8c (patch)
tree88f7e72df4492c5c3ada45dd1d4368459ab1d300 /src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java
parentf5f2e1116704d9019c99e17691889f70621e6b4c (diff)
downloadvaadin-framework-c4dbcb707ce15346c1c6e297eaa2e42bbe186d8c.tar.gz
vaadin-framework-c4dbcb707ce15346c1c6e297eaa2e42bbe186d8c.zip
Major layout API changes: Sizeable is now deprecated. Use HasSize-interface instead in combination with Size object (see ExpandLayout.java for example). OrderedLayout is no longer sizable. Table and Panel implement compatibility methods to proxy old size calls to the new Size object.
svn changeset:3228/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java')
-rw-r--r--src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java b/src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java
index 7e357e0e00..1aaacf329e 100644
--- a/src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java
+++ b/src/com/itmill/toolkit/tests/featurebrowser/FeatureWindow.java
@@ -35,8 +35,8 @@ public class FeatureWindow extends Feature implements Window.CloseListener {
demoWindow = new Window("Feature Test Window");
demoWindow.addListener(this);
- demoWindow.setWidth(400);
- demoWindow.setHeight(200);
+ demoWindow.getSize().setWidth(400);
+ demoWindow.getSize().setHeight(200);
demoWindow.setTheme("default");
layoutUpper.addComponent(addButton);