summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2009-11-26 07:41:13 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2009-11-26 07:41:13 +0000
commit970b9f272357a389abb7cc7e0e35f07c42d9e7ac (patch)
tree07d65c3f12b9df9088378649a1d26d4c8048ef05 /src
parenta53844761aecc890e87feff6ae7df622b4da55af (diff)
downloadvaadin-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.java7
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);