summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpproplist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpproplist.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpproplist.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpproplist.cxx b/lotuswordpro/source/filter/lwpproplist.cxx
index 9e4f6df2877f..e0e159cad43b 100644
--- a/lotuswordpro/source/filter/lwpproplist.cxx
+++ b/lotuswordpro/source/filter/lwpproplist.cxx
@@ -78,12 +78,12 @@ void LwpPropListElement::Read()
m_pObjStrm->SkipExtra();
}
-bool LwpPropListElement::IsNamed(const OUString& name)
+bool LwpPropListElement::IsNamed(std::u16string_view name)
{
return name == m_Name.str();
}
-OUString LwpPropList::GetNamedProperty(const OUString& name)
+OUString LwpPropList::GetNamedProperty(std::u16string_view name)
{
LwpPropListElement* pProp = FindPropByName(name);
if (pProp)
@@ -93,7 +93,7 @@ OUString LwpPropList::GetNamedProperty(const OUString& name)
return OUString();
}
-LwpPropListElement* LwpPropList::FindPropByName(const OUString& name)
+LwpPropListElement* LwpPropList::FindPropByName(std::u16string_view name)
{
LwpPropListElement* pElement = GetFirst();