Updated Branches:
  refs/heads/wicket-6.x 7c25bf2b3 -> f168587a9

WICKET-5411 fix css keys


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f168587a
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f168587a
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f168587a

Branch: refs/heads/wicket-6.x
Commit: f168587a92309cb8e822f43c05238abd883a04a0
Parents: 7c25bf2
Author: Igor Vaynberg <[email protected]>
Authored: Tue Nov 12 10:31:49 2013 -0800
Committer: Igor Vaynberg <[email protected]>
Committed: Tue Nov 12 10:34:15 2013 -0800

----------------------------------------------------------------------
 .../org/apache/wicket/markup/html/form/AutoLabelResolver.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/f168587a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java
----------------------------------------------------------------------
diff --git 
a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java
 
b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java
index 8906249..bab2b9e 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java
@@ -72,9 +72,9 @@ public class AutoLabelResolver implements IComponentResolver
 
        static final String WICKET_FOR = ":for";
 
-       public static final String CSS_REQUIRED_KEY = 
CssUtils.key(AutoLabel.class, "requried");
-       public static final String CSS_DISABLED_KEY = 
CssUtils.key(AutoLabel.class, "requried");
-       public static final String CSS_ERROR_KEY = 
CssUtils.key(AutoLabel.class, "requried");
+       public static final String CSS_REQUIRED_KEY = 
CssUtils.key(AutoLabel.class, "required");
+       public static final String CSS_DISABLED_KEY = 
CssUtils.key(AutoLabel.class, "disabled");
+       public static final String CSS_ERROR_KEY = 
CssUtils.key(AutoLabel.class, "error");
        private static final String CSS_DISABLED_DEFAULT = "disabled";
        private static final String CSS_REQUIRED_DEFAULT = "required";
        private static final String CSS_ERROR_DEFAULT = "error";

Reply via email to