]> source.dussan.org Git - vaadin-framework.git/commitdiff
Code cleanup: Use constant instead of "v-disabled" string
authorArtur Signell <artur.signell@itmill.com>
Mon, 18 Jul 2011 13:53:45 +0000 (13:53 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 18 Jul 2011 13:53:45 +0000 (13:53 +0000)
svn changeset:19824/svn branch:6.7

src/com/vaadin/terminal/gwt/client/VCaption.java

index 6c4b0ed43b61fa5c91e927e8757aa7b87f28d0fe..5381f20d1b51e362cdc42fcdfeb32faa015886f6 100644 (file)
@@ -88,7 +88,7 @@ public class VCaption extends HTML {
         }
 
         if (uidl.hasAttribute("disabled")) {
-            style += " " + "v-disabled";
+            style += " " + ApplicationConnection.DISABLED_CLASSNAME;
         }
 
         setStyleName(style);