From 39d39a22a9c9971e0707d6e9ada0c2bdd42eb5f3 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 26 Aug 2010 09:29:29 +0000 Subject: Fix for #5477 - Theme name constant are incorrectly capitalized svn changeset:14607/svn branch:6.4 --- src/com/vaadin/ui/themes/BaseTheme.java | 2 +- src/com/vaadin/ui/themes/Reindeer.java | 2 +- 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(); -- cgit v1.2.3