From 82cc52702065587c46a7a0b6b08a35b2abe9f51b Mon Sep 17 00:00:00 2001 From: Automerge Date: Mon, 26 Mar 2012 13:21:50 +0000 Subject: [PATCH] [merge from 6.7] #8328 Pass the new, not the old, value to FreeFormStatementDelegate on itemChangeNotification svn changeset:23322/svn branch:6.8 --- src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java b/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java index 9d88072c20..85ff60d5d9 100644 --- a/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java +++ b/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java @@ -135,8 +135,8 @@ final public class ColumnProperty implements Property { /* Set the new value and notify container of the change. */ changedValue = newValue; - owner.getContainer().itemChangeNotification(owner); modified = true; + owner.getContainer().itemChangeNotification(owner); } private boolean isValueAlreadySet(Object newValue) { -- 2.39.5