summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-02-04 00:57:58 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-05 09:53:02 +0100
commitb4571ca497063448805bd707c12fcd584d576620 (patch)
treee203a0f51fb1e7d65c41f76c42767086f85ad124
parent2488768e402bcabd40c73e7c693ee2c1c9be2d69 (diff)
Translate German variable names
Akt -> Current in Excel filter (fontbuff) Change-Id: I7c969fc17e08efff7a446bf6e11ec0ccccce4c82 Reviewed-on: https://gerrit.libreoffice.org/49194 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/filter/excel/fontbuff.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/excel/fontbuff.cxx b/sc/source/filter/excel/fontbuff.cxx
index 2a0a6c07d4f5..52461ffde7f6 100644
--- a/sc/source/filter/excel/fontbuff.cxx
+++ b/sc/source/filter/excel/fontbuff.cxx
@@ -42,16 +42,16 @@ void LotusFontBuffer::Fill( const sal_uInt8 nIndex, SfxItemSet& rItemSet )
{
sal_uInt8 nIntIndex = nIndex & 0x07;
- ENTRY* pAkt = pData + nIntIndex;
+ ENTRY* pCurrent = pData + nIntIndex;
- if( pAkt->pFont )
- rItemSet.Put( *pAkt->pFont );
+ if( pCurrent->pFont )
+ rItemSet.Put( *pCurrent->pFont );
- if( pAkt->pHeight )
- rItemSet.Put( *pAkt->pHeight );
+ if( pCurrent->pHeight )
+ rItemSet.Put( *pCurrent->pHeight );
- if( pAkt->pColor )
- rItemSet.Put( *pAkt->pColor );
+ if( pCurrent->pColor )
+ rItemSet.Put( *pCurrent->pColor );
if( nIndex & 0x08 )
{