summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpmarker.cxx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2017-05-02 13:04:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-04 08:39:18 +0200
commit1fdb0e1897b063c7a0f29ed5a0de440ea057b2ed (patch)
treec3b81991090cefd9468fe0d3dced9da6fb073971 /lotuswordpro/source/filter/lwpmarker.cxx
parent0025fc13d805751f8eeb14febbdd0033e0a6d91e (diff)
Replace all OUString("") with OUString()
Change-Id: Ie14c4d76cb61cfbe0410103adfc1afc8ade0f3e0 Reviewed-on: https://gerrit.libreoffice.org/37146 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro/source/filter/lwpmarker.cxx')
-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 5cf0e9f59060..4d1f85943cc9 100644
--- a/lotuswordpro/source/filter/lwpmarker.cxx
+++ b/lotuswordpro/source/filter/lwpmarker.cxx
@@ -94,7 +94,7 @@ OUString LwpMarker::GetNamedProperty(const OUString& name)
if (pProp)
return pProp->GetNamedProperty(name);
else
- return OUString("");
+ return OUString();
}
LwpStoryMarker::LwpStoryMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
@@ -147,7 +147,7 @@ OUString LwpCHBlkMarker::GetPromptText()
pStory = dynamic_cast<LwpStory*>(m_objPromptStory.obj().get());
if (pStory)
return pStory->GetContentText();
- return OUString("");
+ return OUString();
}
void LwpCHBlkMarker::ConvertCHBlock(XFContentContainer* pXFPara, sal_uInt8 nType)