diff options
author | Johnny_M <klasse@partyheld.de> | 2018-02-04 00:48:57 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2018-02-05 09:49:44 +0100 |
commit | ac3757b8becabc56081f9a454275ccc10bca2cda (patch) | |
tree | 679bcd765e0a6d288e7e8145a534559706eff57c /sc | |
parent | b57ad983e6ed5d976903b1d6588b472bb3051e7d (diff) |
Translate German variable names
Akt -> Current in Excel filter (namebuff)
Change-Id: Idf36f8e19bb96b1d71edb49138c0ab36856c73ce
Reviewed-on: https://gerrit.libreoffice.org/49192
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/namebuff.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/filter/excel/namebuff.cxx b/sc/source/filter/excel/namebuff.cxx index e08a46653666..b25edaa010dd 100644 --- a/sc/source/filter/excel/namebuff.cxx +++ b/sc/source/filter/excel/namebuff.cxx @@ -33,15 +33,15 @@ sal_uInt32 StringHashEntry::MakeHashCode( const OUString& r ) { sal_uInt32 n = 0; - const sal_Unicode* pAkt = r.getStr(); - sal_Unicode cAkt = *pAkt; + const sal_Unicode* pCurrent = r.getStr(); + sal_Unicode cCurrent = *pCurrent; - while( cAkt ) + while( cCurrent ) { n *= 70; - n += static_cast<sal_uInt32>(cAkt); - pAkt++; - cAkt = *pAkt; + n += static_cast<sal_uInt32>(cCurrent); + pCurrent++; + cCurrent = *pCurrent; } return n; |