[Libreoffice-commits] core.git: lotuswordpro/source

Norbert Thiebaud nthiebaud at gmail.com
Fri Mar 7 23:55:02 PST 2014


 lotuswordpro/source/filter/xfilter/xfcell.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c91a7415a8dd8036fb03a074bc84120d60e91e8c
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Sat Mar 8 01:54:36 2014 -0600

    return does not handle converion to OUString
    
    Change-Id: Ifa33978d9cb0bc26d33088973a898d606f14805d

diff --git a/lotuswordpro/source/filter/xfilter/xfcell.cxx b/lotuswordpro/source/filter/xfilter/xfcell.cxx
index fa83fa1..fbd29c7 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() )


More information about the Libreoffice-commits mailing list