summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-10-11 18:53:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-10-11 21:05:55 +0200
commita514c3966381fdb13f9789745359522ef5509c8b (patch)
tree411ffee5cad79db1bc09252c9e78120bdef5675a /lotuswordpro/source
parentloplugin:moveparam in filter (diff)
downloadcore-a514c3966381fdb13f9789745359522ef5509c8b.tar.gz
core-a514c3966381fdb13f9789745359522ef5509c8b.zip
loplugin:moveparam in lotuswordpro
Change-Id: I122fc96930021dd3127d9c991e7dac3140b612f2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123427 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r--lotuswordpro/source/filter/lwpmarker.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpmarker.cxx b/lotuswordpro/source/filter/lwpmarker.cxx
index 653121532a09..86591fd8917e 100644
--- a/lotuswordpro/source/filter/lwpmarker.cxx
+++ b/lotuswordpro/source/filter/lwpmarker.cxx
@@ -257,7 +257,7 @@ void LwpCHBlkMarker::ProcessKeylist(XFContentContainer* pXFPara,sal_uInt8 nType)
EnumAllKeywords();//traverse the proplist to find all keywords
XFInputList* pList = new XFInputList;
pList->SetName(LwpDLNFPVList::m_Name.str());
- pList->SetLabels(m_Keylist);
+ pList->SetLabels(std::vector(m_Keylist));
pXFPara->Add(pList);
}
// else skip MARKER_END
@@ -269,7 +269,7 @@ void LwpCHBlkMarker::ProcessKeylist(XFContentContainer* pXFPara,sal_uInt8 nType)
EnumAllKeywords();
XFInputList* pList = new XFInputList;
pList->SetName(LwpDLNFPVList::m_Name.str());
- pList->SetLabels(m_Keylist);
+ pList->SetLabels(std::vector(m_Keylist));
pXFPara->Add(pList);
XFHolderStart* pHolder= new XFHolderStart;