summaryrefslogtreecommitdiff
path: root/linguistic/source/spelldta.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-13 14:55:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-13 21:14:21 +0200
commit5e1719ff1ed5b4350684c3ed67b5375bb49e0223 (patch)
tree575fabb7266dcb1d94dfd260b765570e6c934529 /linguistic/source/spelldta.cxx
parentda95fc2983e9deea30b9b7148a6e10b5423ed3e1 (diff)
loplugin:sequentialassign in linguistic..lotuswordpro
Change-Id: Ic561f56e1cfe06de219bd7a257186107b5c152fb Reviewed-on: https://gerrit.libreoffice.org/70706 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'linguistic/source/spelldta.cxx')
-rw-r--r--linguistic/source/spelldta.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/linguistic/source/spelldta.cxx b/linguistic/source/spelldta.cxx
index b57a570b38d6..da7818d9acaf 100644
--- a/linguistic/source/spelldta.cxx
+++ b/linguistic/source/spelldta.cxx
@@ -125,8 +125,7 @@ void SeqRemoveNegEntries( std::vector< OUString > &rSeq,
{
std::vector< OUString > aNew;
// merge sequence without duplicates and empty strings in new empty sequence
- aNew = MergeProposalSeqs( aNew, rSeq );
- rSeq = aNew;
+ rSeq = MergeProposalSeqs( aNew, rSeq );
}
}