diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-05-15 09:40:25 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-05-15 09:40:25 +0000 |
commit | 9b6e853c595ac303a60cdd40a5dcb566e9b6ce5d (patch) | |
tree | 0e7737367bff219bc4c1afb0392cfc28d0987490 /build/buildhelpers | |
parent | 172d7a935c1829c5e0b95a6b8be6ae43d99c10c0 (diff) | |
download | vaadin-framework-9b6e853c595ac303a60cdd40a5dcb566e9b6ce5d.tar.gz vaadin-framework-9b6e853c595ac303a60cdd40a5dcb566e9b6ce5d.zip |
Fix for #2953 - Rename old default theme to itmill5
svn changeset:7826/svn branch:6.0
Diffstat (limited to 'build/buildhelpers')
-rw-r--r-- | build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java index 468cf0f4bf..01a37e4925 100644 --- a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java +++ b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java @@ -20,7 +20,7 @@ public class CompileDefaultTheme { private static final String THEME_DIR = "./WebContent/VAADIN/themes/"; private static final String BASE = "base"; - private static final String DEFAULT = "default"; + private static final String ITMILL5 = "itmill5"; private static final String REINDEER = "reindeer"; /** @@ -29,7 +29,7 @@ public class CompileDefaultTheme { */ public static void main(String[] args) throws IOException { combineTheme(new String[] { BASE }); - combineTheme(new String[] { BASE, DEFAULT }); + combineTheme(new String[] { BASE, ITMILL5 }); combineTheme(new String[] { BASE, REINDEER }); } |