sc/source/filter/lotus/lotattr.cxx |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

New commits:
commit eb3bd34dfb55cf3afc088330e73fc03385da20ec
Author: Johnny_M <kla...@partyheld.de>
Date:   Sat Feb 10 14:41:14 2018 +0100

    Translate German variable names
    
    Akt -> Current in Lotus filter (lotattr)
    
    Change-Id: Ibafa9f70f5bcec65dadc1dc118368bd45849a6c0
    Reviewed-on: https://gerrit.libreoffice.org/49533
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Michael Stahl <mst...@redhat.com>

diff --git a/sc/source/filter/lotus/lotattr.cxx 
b/sc/source/filter/lotus/lotattr.cxx
index 66f0d75997eb..e303b435abbe 100644
--- a/sc/source/filter/lotus/lotattr.cxx
+++ b/sc/source/filter/lotus/lotattr.cxx
@@ -96,9 +96,9 @@ const ScPatternAttr& LotAttrCache::GetPattAttr( const 
LotAttrWK3& rAttr )
     ScPatternAttr*  pNewPatt = new ScPatternAttr(pDocPool);
 
     SfxItemSet&     rItemSet = pNewPatt->GetItemSet();
-    ENTRY *pAkt = new ENTRY( pNewPatt );
+    ENTRY *pCurrent = new ENTRY( pNewPatt );
 
-    pAkt->nHash0 = nRefHash;
+    pCurrent->nHash0 = nRefHash;
 
     mpLotusRoot->maFontBuff.Fill( rAttr.nFont, rItemSet );
 
@@ -144,7 +144,7 @@ const ScPatternAttr& LotAttrCache::GetPattAttr( const 
LotAttrWK3& rAttr )
         rItemSet.Put( aHorJustify );
     }
 
-    aEntries.push_back(std::unique_ptr<ENTRY>(pAkt));
+    aEntries.push_back(std::unique_ptr<ENTRY>(pCurrent));
 
     return *pNewPatt;
 }
@@ -198,21 +198,21 @@ void LotAttrCol::SetAttr( const SCROW nRow, const 
ScPatternAttr& rAttr )
             (*iterLast)->nLastRow = nRow;
         else
         {
-            ENTRY *pAkt = new ENTRY;
+            ENTRY *pCurrent = new ENTRY;
 
-            pAkt->pPattAttr = &rAttr;
-            pAkt->nFirstRow = pAkt->nLastRow = nRow;
+            pCurrent->pPattAttr = &rAttr;
+            pCurrent->nFirstRow = pCurrent->nLastRow = nRow;
 
-            aEntries.push_back(std::unique_ptr<ENTRY>(pAkt));
+            aEntries.push_back(std::unique_ptr<ENTRY>(pCurrent));
         }
     }
     else
     {   // first entry
-        ENTRY *pAkt = new ENTRY;
-        pAkt->pPattAttr = &rAttr;
-        pAkt->nFirstRow = pAkt->nLastRow = nRow;
+        ENTRY *pCurrent = new ENTRY;
+        pCurrent->pPattAttr = &rAttr;
+        pCurrent->nFirstRow = pCurrent->nLastRow = nRow;
 
-        aEntries.push_back(std::unique_ptr<ENTRY>(pAkt));
+        aEntries.push_back(std::unique_ptr<ENTRY>(pCurrent));
     }
 }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to