[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - svtools/source

Lionel Elie Mamane lionel at mamane.lu
Fri Jan 17 03:35:15 PST 2014


 svtools/source/brwbox/brwbox1.cxx |    7 +++++++
 1 file changed, 7 insertions(+)

New commits:
commit 873be8f3ff28fd06b531b17d2c7cc41cbc1385e8
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Tue Jan 14 18:44:24 2014 +0100

    fdo#51180 reset (Multi)Selection on Clear()
    
    Change-Id: I06dde63093eab4e5e1c692f6363aca70b89de96a
    Reviewed-on: https://gerrit.libreoffice.org/7429
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svtools/source/brwbox/brwbox1.cxx b/svtools/source/brwbox/brwbox1.cxx
index 0fbca4c..91e29cf 100644
--- a/svtools/source/brwbox/brwbox1.cxx
+++ b/svtools/source/brwbox/brwbox1.cxx
@@ -1149,6 +1149,13 @@ void BrowseBox::Clear()
     DoHideCursor( "Clear" );
     long nOldRowCount = nRowCount;
     nRowCount = 0;
+    if(bMultiSelection)
+    {
+        assert(uRow.pSel);
+        *uRow.pSel = MultiSelection();
+    }
+    else
+        uRow.nSel = BROWSER_ENDOFSELECTION;
     nCurRow = BROWSER_ENDOFSELECTION;
     nTopRow = 0;
     nCurColId = 0;


More information about the Libreoffice-commits mailing list