summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpproplist.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 00:05:32 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 01:21:25 -0600
commitd634ce9edb6f1df409547715a391ad2eeca99f0c (patch)
tree62a7327a3346bf4a9b70d465315b7a466b03449e /lotuswordpro/source/filter/lwpproplist.cxx
parentcoverity#735759 Unchecked dynamic_cast (diff)
downloadcore-d634ce9edb6f1df409547715a391ad2eeca99f0c.tar.gz
core-d634ce9edb6f1df409547715a391ad2eeca99f0c.zip
use 'native' OUString api in lotuswordpro instead of macro and wrappers
Change-Id: Iccb78b59c3de9f29975d10fa4e34232cd3bf2cc3
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 436e30042143..01646b22e3c0 100644
--- a/lotuswordpro/source/filter/lwpproplist.cxx
+++ b/lotuswordpro/source/filter/lwpproplist.cxx
@@ -94,7 +94,7 @@ OUString LwpPropList::GetNamedProperty(OUString name)
{
return pProp->GetValue().str();
}
- return OUString(A2OUSTR(""));
+ return OUString("");
}
LwpPropListElement* LwpPropList::FindPropByName(OUString name)
@@ -134,7 +134,7 @@ OUString LwpPropList::EnumNamedProperty(OUString& name,OUString& value)
return pElement->GetName().str();
}
else
- return A2OUSTR("");
+ return OUString("");
}
else
@@ -147,7 +147,7 @@ OUString LwpPropList::EnumNamedProperty(OUString& name,OUString& value)
if(pElement)
return pElement->GetName().str();
}
- return A2OUSTR("");
+ return OUString("");
}
}