forms/source/component/ListBox.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 23b8a097090ad544c596e644cf477feb360c9469
Author: Lionel Elie Mamane <lio...@mamane.lu>
Date:   Thu Mar 9 19:44:38 2017 +0100

    tdf#106462 old value and new value were swapped
    
    in
    
    commit 66ccfcd2908445b8194c364c89778056374b02af
    Author: Jochen Nitschke <j.nitschke+loger...@ok.de>
    Date:   Fri Oct 21 09:36:10 2016 +0200
    
        remove use of tryPropertyValue Any specialisation
    
        Change-Id: I3180cf5b9e63a3da9257b03ba02967a2d5402ec3
        Reviewed-by: Stephan Bergmann <sberg...@redhat.com>
    
    Change-Id: I90dd3f6dba799eec9210dbb7560be105cb50e6d1
    Reviewed-on: https://gerrit.libreoffice.org/35021
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/forms/source/component/ListBox.cxx 
b/forms/source/component/ListBox.cxx
index 00e1e7a..d5599d5 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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to