From 9d4f8b84d6d26c17a17c285e7f5be04436546014 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Tue, 8 Jun 2010 06:23:06 +0000 Subject: Merged #5152 (AbsoluteLayout getTopValue fix) from 6.3 to 6.4 svn changeset:13615/svn branch:6.4 --- src/com/vaadin/ui/AbsoluteLayout.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/vaadin/ui/AbsoluteLayout.java b/src/com/vaadin/ui/AbsoluteLayout.java index 56c3474091..2b15c8e7ce 100644 --- a/src/com/vaadin/ui/AbsoluteLayout.java +++ b/src/com/vaadin/ui/AbsoluteLayout.java @@ -338,7 +338,7 @@ public class AbsoluteLayout extends AbstractLayout { * @return The value of the 'top' CSS-attribute */ public float getTopValue() { - return topValue == null ? 0 : rightValue.floatValue(); + return topValue == null ? 0 : topValue.floatValue(); } /** -- cgit v1.2.3