[Libreoffice-commits] core.git: sc/source
Johnny_M
klasse at partyheld.de
Mon Feb 12 09:51:17 UTC 2018
sc/source/filter/lotus/lotattr.cxx | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
New commits:
commit eb3bd34dfb55cf3afc088330e73fc03385da20ec
Author: Johnny_M <klasse at 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 <ci at libreoffice.org>
Reviewed-by: Michael Stahl <mstahl at 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));
}
}
More information about the Libreoffice-commits
mailing list