summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAutomerge <automerge@vaadin.com>2012-03-23 11:45:20 +0000
committerAutomerge <automerge@vaadin.com>2012-03-23 11:45:20 +0000
commiteec3d2c300ffaffec27a35108da9a75d99c3b8bf (patch)
treeeecac1db6eee806de7c3d8fa09ac552506300cf7 /src
parent2015a753c18ef8121e215fb252621ae168e0bab9 (diff)
downloadvaadin-framework-eec3d2c300ffaffec27a35108da9a75d99c3b8bf.tar.gz
vaadin-framework-eec3d2c300ffaffec27a35108da9a75d99c3b8bf.zip
[merge from 6.7] #8563 Corrected invalid "this" reference
svn changeset:23302/svn branch:6.8
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/client/ComputedStyle.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ComputedStyle.java b/src/com/vaadin/terminal/gwt/client/ComputedStyle.java
index 662cb5fc34..e994e47d63 100644
--- a/src/com/vaadin/terminal/gwt/client/ComputedStyle.java
+++ b/src/com/vaadin/terminal/gwt/client/ComputedStyle.java
@@ -88,7 +88,7 @@ public class ComputedStyle {
var left = style.left, rsLeft = elem.runtimeStyle.left;
// Put in the new values to get a computed value out
- elem.runtimeStyle.left = this.left;
+ elem.runtimeStyle.left = cs.left;
style.left = ret || 0;
ret = style.pixelLeft + "px";