summaryrefslogtreecommitdiffstats
path: root/sc
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 00:01:01 +0100
commit758755e31b3d9e1ed2eab522d4794282178346ac (patch)
treeed77cfec4749c07adab9416bc9fa96f04a5ee959 /sc
parentfdo#74981: sw: fix input field handling when splitting paragraphs (diff)
downloadcore-758755e31b3d9e1ed2eab522d4794282178346ac.tar.gz
core-758755e31b3d9e1ed2eab522d4794282178346ac.zip
correct error string, #N/A instead of #NA
is that mapping used at all? Change-Id: I15019072b6e812b9ffe29d3ee6afacd9ab526948
Diffstat (limited to 'sc')
-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()