summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2017-03-09 19:44:38 +0100
committerAndras Timar <andras.timar@collabora.com>2017-03-10 16:22:45 +0100
commitca899a3e399b934cf91741e3c9076f5b344a8f05 (patch)
tree4a05b06179ef38408fa0f2c0b8b4894107b6cd2f /forms
parentcf1b4679b0143e97d2e05cae9c5a01f0f4234ed8 (diff)
tdf#106462 old value and new value were swapped
in commit 66ccfcd2908445b8194c364c89778056374b02af Author: Jochen Nitschke <j.nitschke+logerrit@ok.de> Date: Fri Oct 21 09:36:10 2016 +0200 remove use of tryPropertyValue Any specialisation Change-Id: I3180cf5b9e63a3da9257b03ba02967a2d5402ec3 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Change-Id: I90dd3f6dba799eec9210dbb7560be105cb50e6d1 Reviewed-on: https://gerrit.libreoffice.org/35021 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit 23b8a097090ad544c596e644cf477feb360c9469)
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ListBox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 00e1e7afafb7..d5599d55859e 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -421,8 +421,8 @@ namespace frm
Any _rCurrentValue = getCurrentSingleValue();
if (_rCurrentValue != _rValue)
{
- _rOldValue = _rValue;
- _rConvertedValue = _rCurrentValue;
+ _rOldValue = _rCurrentValue;
+ _rConvertedValue = _rValue;
bModified = true;
}
break;