aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2012-08-28 15:47:46 +0300
committerJohn Ahlroos <john@vaadin.com>2012-08-28 15:47:46 +0300
commitb0ab3da024d83f7c2fc8eb39e02f14c77a18f66b (patch)
tree05ec6c0560c6ca5f6975dc26bb2e1095a94dc211 /server/src/com
parentc6d43cc88fb0ef4853e07be54fc76a6aa1dc9e23 (diff)
downloadvaadin-framework-b0ab3da024d83f7c2fc8eb39e02f14c77a18f66b.tar.gz
vaadin-framework-b0ab3da024d83f7c2fc8eb39e02f14c77a18f66b.zip
Fixes StackOverflow in Slider
Diffstat (limited to 'server/src/com')
-rw-r--r--server/src/com/vaadin/ui/Slider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/Slider.java b/server/src/com/vaadin/ui/Slider.java
index a0b1d01b01..660bf739ae 100644
--- a/server/src/com/vaadin/ui/Slider.java
+++ b/server/src/com/vaadin/ui/Slider.java
@@ -294,7 +294,7 @@ public class Slider extends AbstractField<Double> {
// Support setting all types of Numbers
newFieldValue = ((Number) newFieldValue).doubleValue();
}
- setValue(newFieldValue);
+ super.setValue(newFieldValue);
// The cast is safe if the above call returned without throwing
getState().setValue((Double) newFieldValue);
}