sw/source/filter/ascii/ascatr.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 70eedc8d664433d4f101f59bd4782e542836d3f7
Author: Johnny_M <kla...@partyheld.de>
Date:   Sat Feb 17 14:45:50 2018 +0100

    Translate German variable names
    
    Akt -> Current in ascii filter
    
    Change-Id: I05637a65632b15b1ec0e0860bff15651dc25a8c4
    Reviewed-on: https://gerrit.libreoffice.org/49899
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrh...@googlemail.com>

diff --git a/sw/source/filter/ascii/ascatr.cxx 
b/sw/source/filter/ascii/ascatr.cxx
index 175572133d79..f0b2c1e7dac6 100644
--- a/sw/source/filter/ascii/ascatr.cxx
+++ b/sw/source/filter/ascii/ascatr.cxx
@@ -47,7 +47,7 @@ class SwASC_AttrIter
 {
     SwASCWriter& rWrt;
     const SwTextNode& rNd;
-    sal_Int32 nAktSwPos;
+    sal_Int32 nCurrentSwPos;
 
     sal_Int32 SearchNext( sal_Int32 nStartPos );
 
@@ -56,12 +56,12 @@ public:
 
     void NextPos()
     {
-        nAktSwPos = SearchNext( nAktSwPos + 1 );
+        nCurrentSwPos = SearchNext( nCurrentSwPos + 1 );
     }
 
     sal_Int32 WhereNext() const
     {
-        return nAktSwPos;
+        return nCurrentSwPos;
     }
 
     bool OutAttr( sal_Int32 nSwPos );
@@ -73,9 +73,9 @@ SwASC_AttrIter::SwASC_AttrIter(
     sal_Int32 nStt )
     : rWrt( rWr )
     , rNd( rTextNd )
-    , nAktSwPos( 0 )
+    , nCurrentSwPos( 0 )
 {
-    nAktSwPos = SearchNext( nStt + 1 );
+    nCurrentSwPos = SearchNext( nStt + 1 );
 }
 
 sal_Int32 SwASC_AttrIter::SearchNext( sal_Int32 nStartPos )
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to