summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-02-04 00:48:57 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-05 09:49:44 +0100
commitac3757b8becabc56081f9a454275ccc10bca2cda (patch)
tree679bcd765e0a6d288e7e8145a534559706eff57c
parentb57ad983e6ed5d976903b1d6588b472bb3051e7d (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>
-rw-r--r--sc/source/filter/excel/namebuff.cxx12
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;