summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-12-12 10:02:23 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-12-12 10:29:21 +0000
commit554ff8ef0f734cbc33644a075c83cc840fb770ab (patch)
treeeca1893fd7c9ebee5461c25dc3ba97d9ab384f05 /svtools
parentdd747c0669f6e31462c39fe104d2f2c0acc4de0a (diff)
coverity#1371265 Missing move assignment operator
Change-Id: I5b7c6992e92e4d096b8230774ed8f4bfaaad5831
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/brwbox1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/brwbox/brwbox1.cxx b/svtools/source/brwbox/brwbox1.cxx
index e78e654684ae..915e0e4fa644 100644
--- a/svtools/source/brwbox/brwbox1.cxx
+++ b/svtools/source/brwbox/brwbox1.cxx
@@ -1069,7 +1069,7 @@ void BrowseBox::Clear()
if(bMultiSelection)
{
assert(uRow.pSel);
- *uRow.pSel = MultiSelection();
+ uRow.pSel->Reset();
}
else
uRow.nSel = BROWSER_ENDOFSELECTION;