diff options
author | Johnny_M <klasse@partyheld.de> | 2017-03-30 19:45:39 +0000 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-03-31 08:34:15 +0000 |
commit | 6a59352290a5d05c4236522b56124ac06cd591ad (patch) | |
tree | 2b5f96db475e4728fdb8e06ac2c7a72b663f3ad7 /sc | |
parent | 1fc76c4dfc196798eea24030a205d1e5f7922eb2 (diff) |
Fix German comment translation
This is a minor fix to the German comment translation made on the
commit 5ddef1648005756cfb811f9e6261851d4df712c2
(https://gerrit.libreoffice.org/35343). Specifically, it is a fix
according to the comment in
https://gerrit.libreoffice.org/#/c/35343/6/sc/source/ui/docshell/docsh8.cxx
Change-Id: I7462de4589856a58fda58d52583a0702ddec0a0d
Reviewed-on: https://gerrit.libreoffice.org/35928
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/docshell/docsh8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/docsh8.cxx b/sc/source/ui/docshell/docsh8.cxx index e3f672d32edb..dd72ce19d7ef 100644 --- a/sc/source/ui/docshell/docsh8.cxx +++ b/sc/source/ui/docshell/docsh8.cxx @@ -958,7 +958,7 @@ sal_uLong ScDocShell::DBaseExport( const OUString& rFullFileName, rtl_TextEncodi case sdbc::DataType::DATE: { aDocument.GetValue( nDocCol, nDocRow, nTab, fVal ); - // no value differentiation between 0 with value and 0 no-value + // differentiate between 0 with value and 0 no-value bool bIsNull = (fVal == 0.0); if ( bIsNull ) bIsNull = !aDocument.HasValueData( nDocCol, nDocRow, nTab ); |