[Libreoffice-commits] core.git: sc/source

Johnny_M klasse at partyheld.de
Mon Feb 5 08:50:04 UTC 2018


 sc/source/filter/excel/namebuff.cxx |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit ac3757b8becabc56081f9a454275ccc10bca2cda
Author: Johnny_M <klasse at partyheld.de>
Date:   Sun Feb 4 00:48:57 2018 +0100

    Translate German variable names
    
    Akt -> Current in Excel filter (namebuff)
    
    Change-Id: Idf36f8e19bb96b1d71edb49138c0ab36856c73ce
    Reviewed-on: https://gerrit.libreoffice.org/49192
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

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;


More information about the Libreoffice-commits mailing list