diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-08-26 09:29:29 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-08-26 09:29:29 +0000 |
commit | 39d39a22a9c9971e0707d6e9ada0c2bdd42eb5f3 (patch) | |
tree | 4d912e387309ba554a3be1cb46db613e7e1ba472 | |
parent | a5a5ea3a18235152362c504a076d3c73388fdf78 (diff) | |
download | vaadin-framework-39d39a22a9c9971e0707d6e9ada0c2bdd42eb5f3.tar.gz vaadin-framework-39d39a22a9c9971e0707d6e9ada0c2bdd42eb5f3.zip |
Fix for #5477 - Theme name constant are incorrectly capitalized
svn changeset:14607/svn branch:6.4
-rw-r--r-- | src/com/vaadin/ui/themes/BaseTheme.java | 2 | ||||
-rw-r--r-- | src/com/vaadin/ui/themes/Reindeer.java | 2 | ||||
-rw-r--r-- | src/com/vaadin/ui/themes/Runo.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/com/vaadin/ui/themes/BaseTheme.java b/src/com/vaadin/ui/themes/BaseTheme.java index 7144e31ec1..c8ba08d30d 100644 --- a/src/com/vaadin/ui/themes/BaseTheme.java +++ b/src/com/vaadin/ui/themes/BaseTheme.java @@ -24,7 +24,7 @@ package com.vaadin.ui.themes; */ public class BaseTheme { - public static final String THEME_NAME = "Base"; + public static final String THEME_NAME = "base"; /** * Creates a button that looks like a regular hypertext link but still acts diff --git a/src/com/vaadin/ui/themes/Reindeer.java b/src/com/vaadin/ui/themes/Reindeer.java index 2febbb9305..198d7c1515 100644 --- a/src/com/vaadin/ui/themes/Reindeer.java +++ b/src/com/vaadin/ui/themes/Reindeer.java @@ -12,7 +12,7 @@ import com.vaadin.ui.VerticalLayout; public class Reindeer extends BaseTheme { - public static final String THEME_NAME = "Reindeer"; + public static final String THEME_NAME = "reindeer"; /*************************************************************************** * diff --git a/src/com/vaadin/ui/themes/Runo.java b/src/com/vaadin/ui/themes/Runo.java index 88011addc4..bc36dbc1cf 100644 --- a/src/com/vaadin/ui/themes/Runo.java +++ b/src/com/vaadin/ui/themes/Runo.java @@ -5,7 +5,7 @@ package com.vaadin.ui.themes; public class Runo extends BaseTheme { - public static final String THEME_NAME = "Runo"; + public static final String THEME_NAME = "runo"; public static String themeName() { return THEME_NAME.toLowerCase(); |