Kaydet (Commit) ac3757b8 authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Markus Mohrhard

Translate German variable names

Akt -> Current in Excel filter (namebuff)

Change-Id: Idf36f8e19bb96b1d71edb49138c0ab36856c73ce
Reviewed-on: https://gerrit.libreoffice.org/49192Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst b57ad983
...@@ -33,15 +33,15 @@ ...@@ -33,15 +33,15 @@
sal_uInt32 StringHashEntry::MakeHashCode( const OUString& r ) sal_uInt32 StringHashEntry::MakeHashCode( const OUString& r )
{ {
sal_uInt32 n = 0; sal_uInt32 n = 0;
const sal_Unicode* pAkt = r.getStr(); const sal_Unicode* pCurrent = r.getStr();
sal_Unicode cAkt = *pAkt; sal_Unicode cCurrent = *pCurrent;
while( cAkt ) while( cCurrent )
{ {
n *= 70; n *= 70;
n += static_cast<sal_uInt32>(cAkt); n += static_cast<sal_uInt32>(cCurrent);
pAkt++; pCurrent++;
cAkt = *pAkt; cCurrent = *pCurrent;
} }
return n; return n;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment