Kaydet (Commit) eb3bd34d authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Michael Stahl

Translate German variable names

Akt -> Current in Lotus filter (lotattr)

Change-Id: Ibafa9f70f5bcec65dadc1dc118368bd45849a6c0
Reviewed-on: https://gerrit.libreoffice.org/49533Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst ee47b7b4
......@@ -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));
}
}
......
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