diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-09-10 10:57:45 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2008-09-10 10:57:45 +0000 |
commit | 17d8e2a2f890ee4da41484bd78ae62d49d483a14 (patch) | |
tree | 6a20649c79a197d868383b15b978c929f21597e9 /src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java | |
parent | 68559ee7f22500154409949dc957b6ba58987bc7 (diff) | |
download | vaadin-framework-17d8e2a2f890ee4da41484bd78ae62d49d483a14.tar.gz vaadin-framework-17d8e2a2f890ee4da41484bd78ae62d49d483a14.zip |
Removed deprecated method references.
svn changeset:5379/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java b/src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java index 084d14f149..00f5675780 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/SelectExample.java @@ -72,7 +72,7 @@ public class SelectExample extends CustomComponent { single.addComponent(sel);
// combobox
sel = new ComboBox("ComboBox");
- ((ComboBox) sel).setColumns(15);
+ ((ComboBox) sel).setWidth("15em");
initSelect(sel);
single.addComponent(sel);
// "twin column" select
|