diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/fontbuff.cxx | 14 |
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 ) { |