]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed typo: setHeight(String width) -> setHeight(String height)
authorJouni Koivuviita <jouni.koivuviita@itmill.com>
Mon, 18 Feb 2008 09:57:32 +0000 (09:57 +0000)
committerJouni Koivuviita <jouni.koivuviita@itmill.com>
Mon, 18 Feb 2008 09:57:32 +0000 (09:57 +0000)
svn changeset:3818/svn branch:trunk

src/com/itmill/toolkit/ui/AbstractComponent.java

index 07292b885989398ebca2129f9211f51695b048d9..70691e2bd9fd62446c37a025869c205779bbb8de 100644 (file)
@@ -1104,8 +1104,8 @@ public abstract class AbstractComponent implements Component, MethodEventSource
         setWidthUnits(p[1]);
     }
 
-    public void setHeight(String width) {
-        int[] p = parseStringSize(width);
+    public void setHeight(String height) {
+        int[] p = parseStringSize(height);
         setHeight(p[0]);
         setHeightUnits(p[1]);
     }