diff options
author | Johnny_M <klasse@partyheld.de> | 2018-03-31 13:35:36 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2018-04-12 18:42:17 +0200 |
commit | 4cc3f90303a3da5141598b95e6158d98d647cbcf (patch) | |
tree | 6bd47c1c4548a3d9b5b45a32ad76eb965cf69bd8 /sw | |
parent | 667722ab8a366bf5275acb7cddbe1a9b03776821 (diff) |
Translate German variable names
Akt -> Current in autofmt
Change-Id: I6c1a8c20bc1c98644a7667527269b52aabc6cf50
Reviewed-on: https://gerrit.libreoffice.org/52186
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/edit/autofmt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx index 4a07168b8d0d..09ccd39c604a 100644 --- a/sw/source/core/edit/autofmt.cxx +++ b/sw/source/core/edit/autofmt.cxx @@ -165,7 +165,7 @@ class SwAutoFormat bool IsEnumericChar( const SwTextNode&) const; static bool IsBlanksInString( const SwTextNode&); sal_uInt16 CalcLevel( const SwTextNode&, sal_uInt16 *pDigitLvl = nullptr ) const; - sal_Int32 GetBigIndent( sal_Int32& rAktSpacePos ) const; + sal_Int32 GetBigIndent( sal_Int32& rCurrentSpacePos ) const; static OUString DelLeadingBlanks(const OUString& rStr); static OUString DelTrailingBlanks( const OUString& rStr ); @@ -478,7 +478,7 @@ sal_uInt16 SwAutoFormat::CalcLevel( const SwTextNode& rNd, sal_uInt16 *pDigitLvl return nLvl; } -sal_Int32 SwAutoFormat::GetBigIndent( sal_Int32& rAktSpacePos ) const +sal_Int32 SwAutoFormat::GetBigIndent( sal_Int32& rCurrentSpacePos ) const { SwTextFrameInfo aFInfo( GetFrame( *m_pCurTextNd ) ); const SwTextFrame* pNxtFrame = nullptr; @@ -492,7 +492,7 @@ sal_Int32 SwAutoFormat::GetBigIndent( sal_Int32& rAktSpacePos ) const pNxtFrame = GetFrame( *pNxtNd ); } - return aFInfo.GetBigIndent( rAktSpacePos, pNxtFrame ); + return aFInfo.GetBigIndent( rCurrentSpacePos, pNxtFrame ); } bool SwAutoFormat::IsNoAlphaLine( const SwTextNode& rNd ) const |