summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/token.cxx
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-06-30 22:49:10 +0200
committerMichael Stahl <mstahl@redhat.com>2017-07-03 12:03:58 +0200
commit5034e8217c9844293dc94e5dff0bdc865ad7a91a (patch)
treead59e9dd3844b98efb5d130edfa7d7c793dd4a11 /sc/source/core/tool/token.cxx
parent00c81f291922b09f3bd6ceb334d5aaae0bab5334 (diff)
Translate German comments and debug strings (leftovers in dirs sal to sc)
Translates leftovers found using a custom regex and manually checking the rest of the affected file. Additionally: - A few spelling fixes Change-Id: I2b83bd11adf520b90bb29c8ea624990759dad3c6 Reviewed-on: https://gerrit.libreoffice.org/39427 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/source/core/tool/token.cxx')
-rw-r--r--sc/source/core/tool/token.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 2f6a0e49c5db..5b1e193f6738 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -356,7 +356,7 @@ void ScRawToken::SetExternal( const sal_Unicode* pStr )
sal_Int32 nLen = GetStrLen( pStr ) + 1;
if( nLen >= MAXSTRLEN )
nLen = MAXSTRLEN-1;
- // Platz fuer Byte-Parameter lassen!
+ // Leave space for byte parameter!
memcpy( cStr+1, pStr, nLen * sizeof(sal_Unicode) );
cStr[ nLen+1 ] = 0;
}