[Libreoffice-commits] core.git: sc/source

Johnny_M klasse at partyheld.de
Mon Feb 5 08:53:23 UTC 2018


 sc/source/filter/excel/fontbuff.cxx |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit b4571ca497063448805bd707c12fcd584d576620
Author: Johnny_M <klasse at partyheld.de>
Date:   Sun Feb 4 00:57:58 2018 +0100

    Translate German variable names
    
    Akt -> Current in Excel filter (fontbuff)
    
    Change-Id: I7c969fc17e08efff7a446bf6e11ec0ccccce4c82
    Reviewed-on: https://gerrit.libreoffice.org/49194
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

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 )
     {


More information about the Libreoffice-commits mailing list