From b4571ca497063448805bd707c12fcd584d576620 Mon Sep 17 00:00:00 2001 From: Johnny_M Date: Sun, 4 Feb 2018 00:57:58 +0100 Subject: Translate German variable names Akt -> Current in Excel filter (fontbuff) Change-Id: I7c969fc17e08efff7a446bf6e11ec0ccccce4c82 Reviewed-on: https://gerrit.libreoffice.org/49194 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- sc/source/filter/excel/fontbuff.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sc') 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 ) { -- cgit