summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 01:47:12 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-08 01:47:12 -0600
commitbe62f349c7167d0716df7b09d810c6105ffddc12 (patch)
treec6379c887b9660f2dfd8e91954c691ebadf95ee4 /lotuswordpro
parentd634ce9edb6f1df409547715a391ad2eeca99f0c (diff)
return does not handle converion to OUString
Change-Id: Iaf6cd34a2ecbbce191aa81f18049f6ffe681fa45
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpchangemgr.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpchangemgr.cxx b/lotuswordpro/source/filter/lwpchangemgr.cxx
index a1685b146969..dc5114d521b3 100644
--- a/lotuswordpro/source/filter/lwpchangemgr.cxx
+++ b/lotuswordpro/source/filter/lwpchangemgr.cxx
@@ -112,7 +112,7 @@ OUString LwpChangeMgr::GetChangeID(LwpFrib* pFrib)
std::map<LwpFrib*,OUString>::iterator iter;
iter = m_pFribMap->find(pFrib);
if (iter == m_pFribMap->end())
- return "";
+ return OUString("");
else
return iter->second;
}