diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-08 01:54:36 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-08 01:54:36 -0600 |
commit | c91a7415a8dd8036fb03a074bc84120d60e91e8c (patch) | |
tree | 615b186e7855c2b963408e79d8d02d61e0ca37e4 /lotuswordpro | |
parent | be62f349c7167d0716df7b09d810c6105ffddc12 (diff) |
return does not handle converion to OUString
Change-Id: Ifa33978d9cb0bc26d33088973a898d606f14805d
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfcell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfcell.cxx b/lotuswordpro/source/filter/xfilter/xfcell.cxx index fa83fa1316fa..fbd29c7b1756 100644 --- a/lotuswordpro/source/filter/xfilter/xfcell.cxx +++ b/lotuswordpro/source/filter/xfilter/xfcell.cxx @@ -176,12 +176,12 @@ OUString XFCell::GetCellName() XFRow *pRow = m_pOwnerRow; if( !pRow ) - return ""; + return OUString(""); XFTable *pTable = pRow->GetOwnerTable(); if( !pTable ) - return ""; + return OUString(""); OUString name; if( pTable->IsSubTable() ) |