diff options
author | Jani Laakso <jani.laakso@itmill.com> | 2007-02-09 10:46:04 +0000 |
---|---|---|
committer | Jani Laakso <jani.laakso@itmill.com> | 2007-02-09 10:46:04 +0000 |
commit | 192bea73c1c0ce86414b28eb5bfadd227483366e (patch) | |
tree | 5b3eb978c0352b8d4a0b617128c49acb76f6e45c /src/com/itmill/toolkit/demo/features/IntroWelcome.java | |
parent | f0a058e4d965a3177b19a2a1ca459ac1bf6d0a28 (diff) | |
download | vaadin-framework-192bea73c1c0ce86414b28eb5bfadd227483366e.tar.gz vaadin-framework-192bea73c1c0ce86414b28eb5bfadd227483366e.zip |
Added version information to welcome page.
Added TODO texts.
Removed obsolete code.
svn changeset:594/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/demo/features/IntroWelcome.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/features/IntroWelcome.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/demo/features/IntroWelcome.java b/src/com/itmill/toolkit/demo/features/IntroWelcome.java index a48f1115f9..3346f97269 100644 --- a/src/com/itmill/toolkit/demo/features/IntroWelcome.java +++ b/src/com/itmill/toolkit/demo/features/IntroWelcome.java @@ -54,7 +54,8 @@ public class IntroWelcome extends Feature { Label lab = new Label(); lab.setStyle("featurebrowser-none"); Label version = new Label(); - version.setValue("IT Mill Toolkit Version: "+ApplicationServlet.VERSION); + version.setValue("IT Mill Toolkit version: "+ApplicationServlet.VERSION); + l.addComponent(version); l.addComponent(lab); // Properties @@ -79,7 +80,7 @@ public class IntroWelcome extends Feature { } protected String getTitle() { - return "Welcome to the IT Mill Toolkit feature tour!"; + return "Welcome to the IT Mill Toolkit feature tour! (TODO)"; } } |