[Libreoffice-commits] core.git: lotuswordpro/source
Norbert Thiebaud
nthiebaud at gmail.com
Fri Mar 7 23:47:44 PST 2014
lotuswordpro/source/filter/lwpchangemgr.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit be62f349c7167d0716df7b09d810c6105ffddc12
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Sat Mar 8 01:47:12 2014 -0600
return does not handle converion to OUString
Change-Id: Iaf6cd34a2ecbbce191aa81f18049f6ffe681fa45
diff --git a/lotuswordpro/source/filter/lwpchangemgr.cxx b/lotuswordpro/source/filter/lwpchangemgr.cxx
index a1685b1..dc5114d 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;
}
More information about the Libreoffice-commits
mailing list