From c91a7415a8dd8036fb03a074bc84120d60e91e8c Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 8 Mar 2014 01:54:36 -0600 Subject: return does not handle converion to OUString Change-Id: Ifa33978d9cb0bc26d33088973a898d606f14805d --- lotuswordpro/source/filter/xfilter/xfcell.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lotuswordpro') 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() ) -- cgit