]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed height/width typo in ITextField
authorArtur Signell <artur.signell@itmill.com>
Mon, 18 Aug 2008 08:17:22 +0000 (08:17 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 18 Aug 2008 08:17:22 +0000 (08:17 +0000)
svn changeset:5201/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ITextField.java

index cce05ec665f3ed00c6efbe37f1c0d6f23caa674d..591435ec6a90d6e252fbcfd0df9c633853f3c19a 100644 (file)
@@ -143,7 +143,7 @@ public class ITextField extends TextBoxBase implements Paintable, Field,
                     .indexOf("%"))) / 100;
             iLayout();
         } else {
-            super.setHeight(width);
+            super.setWidth(width);
             proportionalWidth = -1;
         }
     }