summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-18 11:55:55 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-18 11:55:55 +0000
commit3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2 (patch)
treefba8c1988df1b4acc794e16d60a8bc28a6020837 /build
parentbaa72fea3a4ec08682fe83058ad76dd85ccb8a13 (diff)
downloadvaadin-framework-3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2.tar.gz
vaadin-framework-3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2.zip
Old default theme renamed to "runo".
svn changeset:7856/svn branch:6.0
Diffstat (limited to 'build')
-rw-r--r--build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java4
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 457905fe21..63bae7f228 100644
--- a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java
+++ b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java
@@ -21,7 +21,7 @@ public class CompileDefaultTheme {
private static final String THEME_DIR = "./WebContent/VAADIN/themes/";
private static final String BASE = "base";
- private static final String ITMILL5 = "itmill5";
+ private static final String RUNO = "runo";
private static final String REINDEER = "reindeer";
/**
@@ -30,7 +30,7 @@ public class CompileDefaultTheme {
*/
public static void main(String[] args) throws IOException {
combineTheme(new String[] { BASE }, false);
- combineTheme(new String[] { BASE, ITMILL5 }, false);
+ combineTheme(new String[] { BASE, RUNO }, false);
combineTheme(new String[] { BASE, REINDEER }, true);
}