summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-02-21 11:19:00 +0200
committerLeif Åstrand <leif@vaadin.com>2013-02-21 11:19:00 +0200
commitc2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e (patch)
tree0116eef4c5928075f1a7af207612ffd3985fa0b4
parent07754fdb1a4b30df5bc4ebda067cf32aadaaeb2f (diff)
downloadvaadin-framework-c2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e.tar.gz
vaadin-framework-c2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e.zip
Fix incomplete commit for (#11092)
This fixes a problem that was accidentally added in commit 25368634 Change-Id: Ia58d076bb50460e1bcbf33b270eac305a98f9795
-rw-r--r--client/src/com/vaadin/client/ApplicationConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java
index 8f71d15c63..a2f2c4989a 100644
--- a/client/src/com/vaadin/client/ApplicationConnection.java
+++ b/client/src/com/vaadin/client/ApplicationConnection.java
@@ -1576,7 +1576,7 @@ public class ApplicationConnection {
for (StateChangeEvent event : pendingStateChangeEvents) {
if (VCaption.mightChange(event)) {
ServerConnector connector = event.getConnector();
- needsCaptionUpdate.add(connector.getConnectorId());
+ needsCaptionUpdate.add(connector);
}
}