diff options
author | Jani Laakso <jani.laakso@itmill.com> | 2007-02-05 13:39:43 +0000 |
---|---|---|
committer | Jani Laakso <jani.laakso@itmill.com> | 2007-02-05 13:39:43 +0000 |
commit | 08d20d97d3e5588cf5959d7d14d857f390b3ec35 (patch) | |
tree | 6da3266543f692021aa691c6a6a57ff0d8764b52 /src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java | |
parent | f01ef1ce95b21a12d93bfe83098729c47d68d186 (diff) | |
download | vaadin-framework-08d20d97d3e5588cf5959d7d14d857f390b3ec35.tar.gz vaadin-framework-08d20d97d3e5588cf5959d7d14d857f390b3ec35.zip |
Removed "root" panel from Feature Components.
Disabled "FrameWindow", not targeted for first public release (now).
svn changeset:470/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java b/src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java index 2e68ae38f2..493ae4ecc8 100644 --- a/src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java +++ b/src/com/itmill/toolkit/demo/features/FeatureFrameWindow.java @@ -53,14 +53,9 @@ public class FeatureFrameWindow extends Feature implements Button.ClickListener demoWindow.getFrameset() .newFrame(createFrame(demoWindow.getFrameset())); - // Example panel - Panel show = new Panel("Test Window Control"); - ((OrderedLayout) show.getLayout()) - .setOrientation(OrderedLayout.ORIENTATION_HORIZONTAL); - show.addComponent(addButton); - show.addComponent(removeButton); + l.addComponent(addButton); + l.addComponent(removeButton); updateWinStatus(); - l.addComponent(show); // Properties propertyPanel = new PropertyPanel(demoWindow); |