diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-06-06 13:16:35 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-06-06 13:16:35 +0300 |
commit | 1115e1f8bbc39c70005214b2a0e713cb3a17f5e4 (patch) | |
tree | beb89f599f8c24ae4526c1c839c053ed08eb4d1b /src/com/vaadin/ui | |
parent | 9ae1a99ca3f4bcff88a576fddee6644ceeaa9d7e (diff) | |
download | vaadin-framework-1115e1f8bbc39c70005214b2a0e713cb3a17f5e4.tar.gz vaadin-framework-1115e1f8bbc39c70005214b2a0e713cb3a17f5e4.zip |
Add missing call to super.detach() (#6690)
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/AbstractComponent.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/AbstractComponent.java b/src/com/vaadin/ui/AbstractComponent.java index 25695e3c0c..ba0e5db89c 100644 --- a/src/com/vaadin/ui/AbstractComponent.java +++ b/src/com/vaadin/ui/AbstractComponent.java @@ -609,6 +609,7 @@ public abstract class AbstractComponent extends AbstractClientConnector */ @Override public void detach() { + super.detach(); if (actionManager != null) { // Remove any existing viewer. Root cast is just to make the // compiler happy |