summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/data/util
diff options
context:
space:
mode:
authorAutomerge <automerge@vaadin.com>2012-03-26 13:21:50 +0000
committerAutomerge <automerge@vaadin.com>2012-03-26 13:21:50 +0000
commit82cc52702065587c46a7a0b6b08a35b2abe9f51b (patch)
treee298ba2de05e2be3afbd842ae5c851a945358da0 /src/com/vaadin/data/util
parenta21e8c662252c2f2f872c547b22a99b1fc35dee2 (diff)
downloadvaadin-framework-82cc52702065587c46a7a0b6b08a35b2abe9f51b.tar.gz
vaadin-framework-82cc52702065587c46a7a0b6b08a35b2abe9f51b.zip
[merge from 6.7] #8328 Pass the new, not the old, value to FreeFormStatementDelegate on itemChangeNotification
svn changeset:23322/svn branch:6.8
Diffstat (limited to 'src/com/vaadin/data/util')
-rw-r--r--src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java2
1 files changed, 1 insertions, 1 deletions
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) {