diff options
author | Johnny_M <klasse@partyheld.de> | 2020-03-27 13:23:48 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2020-03-30 11:51:44 +0200 |
commit | 1422466fcbd4f1dc716d5680e220f0a0538a9f35 (patch) | |
tree | cbebb50ee1d4ed4887d4dca3fa4b2a4a3798a820 /editeng/source/misc | |
parent | b74798941dccd8fbe05c472c868f6c9a9c9a3f4f (diff) |
Translate German variable names
Ende -> End
Change-Id: Idfcc563c461b604892f6a24c62677e8069bee28f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91208
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'editeng/source/misc')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 6fffdb37f1b0..724902d31120 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1558,7 +1558,7 @@ OUString SvxAutoCorrect::GetPrevAutoCorrWord(SvxAutoCorrDoc const& rDoc, const O if( !nPos ) return sRet; - sal_Int32 nEnde = nPos; + sal_Int32 nEnd = nPos; // it must be followed by a blank or tab! if( ( nPos < rTxt.getLength() && @@ -1576,20 +1576,20 @@ OUString SvxAutoCorrect::GetPrevAutoCorrWord(SvxAutoCorrDoc const& rDoc, const O --nCapLttrPos; // Beginning of pargraph and no Blank! while( lcl_IsInAsciiArr( sImplSttSkipChars, rTxt[ nCapLttrPos ]) ) - if( ++nCapLttrPos >= nEnde ) + if( ++nCapLttrPos >= nEnd ) return sRet; - if( 3 > nEnde - nCapLttrPos ) + if( 3 > nEnd - nCapLttrPos ) return sRet; const LanguageType eLang = GetDocLanguage( rDoc, nCapLttrPos ); CharClass& rCC = GetCharClass(eLang); - if( lcl_IsSymbolChar( rCC, rTxt, nCapLttrPos, nEnde )) + if( lcl_IsSymbolChar( rCC, rTxt, nCapLttrPos, nEnd )) return sRet; - sRet = rTxt.copy( nCapLttrPos, nEnde - nCapLttrPos ); + sRet = rTxt.copy( nCapLttrPos, nEnd - nCapLttrPos ); return sRet; } |