[Libreoffice-commits] core.git: svtools/source
Lionel Elie Mamane
lionel at mamane.lu
Tue Jan 14 09:54:58 PST 2014
svtools/source/brwbox/brwbox1.cxx | 7 +++++++
1 file changed, 7 insertions(+)
New commits:
commit 6036ae611e3667a07d7239857e2d6955f7292810
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
diff --git a/svtools/source/brwbox/brwbox1.cxx b/svtools/source/brwbox/brwbox1.cxx
index 47d5c01..1f16916 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