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

Eike Rathke erack at redhat.com
Mon Dec 15 15:01:27 PST 2014


 sc/source/filter/oox/unitconverter.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 758755e31b3d9e1ed2eab522d4794282178346ac
Author: Eike Rathke <erack at redhat.com>
Date:   Mon Dec 15 23:53:06 2014 +0100

    correct error string, #N/A instead of #NA
    
    is that mapping used at all?
    
    Change-Id: I15019072b6e812b9ffe29d3ee6afacd9ab526948

diff --git a/sc/source/filter/oox/unitconverter.cxx b/sc/source/filter/oox/unitconverter.cxx
index 84a1f26..aca0d51 100644
--- a/sc/source/filter/oox/unitconverter.cxx
+++ b/sc/source/filter/oox/unitconverter.cxx
@@ -112,7 +112,7 @@ UnitConverter::UnitConverter( const WorkbookHelper& rHelper ) :
     addErrorCode( BIFF_ERR_REF,   "#REF!" );
     addErrorCode( BIFF_ERR_NAME,  "#NAME?" );
     addErrorCode( BIFF_ERR_NUM,   "#NUM!" );
-    addErrorCode( BIFF_ERR_NA,    "#NA" );
+    addErrorCode( BIFF_ERR_NA,    "#N/A" );
 }
 
 void UnitConverter::finalizeImport()


More information about the Libreoffice-commits mailing list