branch develop updated (102edea -> 480eb9b)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from 102edea [jgitflow-maven-plugin]Updating develop poms back to pre merge state new 480eb9b fixes #3605: NumberEditor model does not fire when bean is changed. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 480eb9bab0873eb8ff56bbd18d60af7024402892 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 31 18:48:05 2014 +0100 fixes #3605: NumberEditor model does not fire when bean is changed. Summary of changes: .../src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java | 2 ++ 1 file changed, 2 insertions(+) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit 480eb9bab0873eb8ff56bbd18d60af7024402892 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 31 18:48:05 2014 +0100 fixes #3605: NumberEditor model does not fire when bean is changed. --- .../src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jaxx-widgets-number/src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java b/jaxx-widgets-number/src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java index 3aa9995..6250f31 100644 --- a/jaxx-widgets-number/src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java +++ b/jaxx-widgets-number/src/main/java/org/nuiton/jaxx/widgets/number/NumberEditorModel.java @@ -94,7 +94,9 @@ public class NumberEditorModel extends AbstractSerializableBean implements Model } public void setBean(Serializable bean) { + Object oldValue = getBean(); this.bean = bean; + firePropertyChange(PROPERTY_BEAN, oldValue, bean); } public String getNumberPattern() { -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm