diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-11-26 07:41:13 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-11-26 07:41:13 +0000 |
commit | 970b9f272357a389abb7cc7e0e35f07c42d9e7ac (patch) | |
tree | 07d65c3f12b9df9088378649a1d26d4c8048ef05 /src | |
parent | a53844761aecc890e87feff6ae7df622b4da55af (diff) | |
download | vaadin-framework-970b9f272357a389abb7cc7e0e35f07c42d9e7ac.tar.gz vaadin-framework-970b9f272357a389abb7cc7e0e35f07c42d9e7ac.zip |
fixed missing constant
svn changeset:10052/svn branch:event-framework-3234
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/AbstractComponent.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/com/vaadin/ui/AbstractComponent.java b/src/com/vaadin/ui/AbstractComponent.java index 9a3d84a803..550ffbef0b 100644 --- a/src/com/vaadin/ui/AbstractComponent.java +++ b/src/com/vaadin/ui/AbstractComponent.java @@ -25,7 +25,6 @@ import com.vaadin.terminal.PaintException; import com.vaadin.terminal.PaintTarget; import com.vaadin.terminal.Resource; import com.vaadin.terminal.Terminal; -import com.vaadin.terminal.gwt.client.EventListenerRegister; import com.vaadin.terminal.gwt.server.ComponentSizeValidator; import com.vaadin.tools.ReflectTools; @@ -689,10 +688,8 @@ public abstract class AbstractComponent implements Component, MethodEventSource } if (eventIdentifiers != null) { - target - .addAttribute( - EventListenerRegister.REGISTERED_EVENT_LISTENERS_ATTRIBUTE, - eventIdentifiers.toArray()); + target.addAttribute("eventListeners", eventIdentifiers + .toArray()); } paintContent(target); |