diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-02-21 11:19:00 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2013-02-21 11:19:00 +0200 |
commit | c2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e (patch) | |
tree | 0116eef4c5928075f1a7af207612ffd3985fa0b4 | |
parent | 07754fdb1a4b30df5bc4ebda067cf32aadaaeb2f (diff) | |
download | vaadin-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.java | 2 |
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); } } |