summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-12-15 23:53:06 +0100
committerEike Rathke <erack@redhat.com>2014-12-16 02:29:09 +0100
commit9e1ce14754939800d15f3510ebb12342d1da9936 (patch)
tree1094eb0de4168522829bbfba55fcbb65384fee03
parentc074df40639593f73993e36be08aa8c685b55b55 (diff)
correct error string, #N/A instead of #NA
is that mapping used at all? Change-Id: I15019072b6e812b9ffe29d3ee6afacd9ab526948 (cherry picked from commit 758755e31b3d9e1ed2eab522d4794282178346ac)
-rw-r--r--sc/source/filter/oox/unitconverter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/unitconverter.cxx b/sc/source/filter/oox/unitconverter.cxx
index 84a1f2617315..aca0d5155e54 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()