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

Johnny_M klasse at partyheld.de
Tue Mar 13 12:04:30 UTC 2018


 sw/source/filter/ww8/ww8graf.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit bc3205235e5a6674452b4224ace0b58114d1fe3e
Author: Johnny_M <klasse at partyheld.de>
Date:   Sat Mar 10 11:25:11 2018 +0100

    Translate German variable names
    
    Akt -> Current in ww8graf
    
    Change-Id: I4b95d4d884798020feff6c6efa09ba4891886171
    Reviewed-on: https://gerrit.libreoffice.org/51038
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Michael Stahl <mstahl at redhat.com>

diff --git a/sw/source/filter/ww8/ww8graf.cxx b/sw/source/filter/ww8/ww8graf.cxx
index 037dd4f450a9..e66861a699b8 100644
--- a/sw/source/filter/ww8/ww8graf.cxx
+++ b/sw/source/filter/ww8/ww8graf.cxx
@@ -1050,19 +1050,19 @@ void SwWW8ImplReader::InsertTxbxText(SdrTextObj* pTextObj,
                                 const sal_uInt8 *const pParams(aSprmIter.GetCurrentParams());
                                 if (nullptr == pParams)
                                     break;
-                                sal_uInt16 nAktId = aSprmIter.GetCurrentId();
-                                switch( nAktId )
+                                sal_uInt16 nCurrentId = aSprmIter.GetCurrentId();
+                                switch( nCurrentId )
                                 {
                                     case     75:
                                     case    118:
                                     case 0x080A:
                                     case 0x0856:
-                                            Read_Obj(nAktId, pParams, 1);
+                                            Read_Obj(nCurrentId, pParams, 1);
                                         break;
                                     case     68:  // Read_Pic()
                                     case 0x6A03:
                                     case NS_sprm::LN_CObjLocation:
-                                            Read_PicLoc(nAktId, pParams, 1);
+                                            Read_PicLoc(nCurrentId, pParams, 1);
                                         break;
                                 }
                                 aSprmIter.advance();


More information about the Libreoffice-commits mailing list