From: Leif Åstrand Date: Thu, 21 Feb 2013 09:19:00 +0000 (+0200) Subject: Fix incomplete commit for (#11092) X-Git-Tag: 7.0.2~40 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e;p=vaadin-framework.git Fix incomplete commit for (#11092) This fixes a problem that was accidentally added in commit 25368634 Change-Id: Ia58d076bb50460e1bcbf33b270eac305a98f9795 --- 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); } }