summaryrefslogtreecommitdiff
path: root/forms/source/component/ListBox.cxx
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2017-03-09 19:44:38 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2017-03-09 18:54:15 +0000
commit4f4b06ce320305413bcac123a27b6f3f14655cdf (patch)
treef0952933c5005c57f67662a5d9327e378378d413 /forms/source/component/ListBox.cxx
parent8458530312344198d7c63817831efa9223a09660 (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/35023 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
Diffstat (limited to 'forms/source/component/ListBox.cxx')
-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 2e1d52ccaf95..a57322ed5ced 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -425,8 +425,8 @@ namespace frm
Any _rCurrentValue = getCurrentSingleValue();
if (_rCurrentValue != _rValue)
{
- _rOldValue = _rValue;
- _rConvertedValue = _rCurrentValue;
+ _rOldValue = _rCurrentValue;
+ _rConvertedValue = _rValue;
bModified = true;
}
break;