summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source
diff options
context:
space:
mode:
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;