From c2cd910f53bd55e3472b3eb11c32f0cd28e5ee8e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Thu, 21 Feb 2013 11:19:00 +0200 Subject: [PATCH] Fix incomplete commit for (#11092) This fixes a problem that was accidentally added in commit 25368634 Change-Id: Ia58d076bb50460e1bcbf33b270eac305a98f9795 --- client/src/com/vaadin/client/ApplicationConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.5