Kaydet (Commit) bc42b6bf authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Bartosz Kosiorek

tdf#39674 Translate German variable names

Change-Id: Id4eee662715246bf58653287fed5ecb954e88dfc
Reviewed-on: https://gerrit.libreoffice.org/62836
Tested-by: Jenkins
Reviewed-by: 's avatarBartosz Kosiorek <gang65@poczta.onet.pl>
üst 98a9f893
...@@ -1537,7 +1537,7 @@ void ExcelToSc::GetAbsRefs( ScRangeList& rRangeList, XclImpStream& rStrm, std::s ...@@ -1537,7 +1537,7 @@ void ExcelToSc::GetAbsRefs( ScRangeList& rRangeList, XclImpStream& rStrm, std::s
void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt ) void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt )
{ {
TokenId eParam[ 256 ]; TokenId eParam[ 256 ];
sal_Int32 nLauf; sal_Int32 nPass;
if( eId == ocCeil || eId == ocFloor ) if( eId == ocCeil || eId == ocFloor )
{ {
...@@ -1545,11 +1545,11 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt ) ...@@ -1545,11 +1545,11 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt )
nCnt++; nCnt++;
} }
for( nLauf = 0; aStack.HasMoreTokens() && (nLauf < nCnt); nLauf++ ) for( nPass = 0; aStack.HasMoreTokens() && (nPass < nCnt); nPass++ )
aStack >> eParam[ nLauf ]; aStack >> eParam[ nPass ];
// #i70925# reduce parameter count, if no more tokens available on token stack // #i70925# reduce parameter count, if no more tokens available on token stack
if( nLauf < nCnt ) if( nPass < nCnt )
nCnt = static_cast< sal_uInt8 >( nLauf ); nCnt = static_cast< sal_uInt8 >( nPass );
if( nCnt > 0 && eId == ocExternal ) if( nCnt > 0 && eId == ocExternal )
{ {
...@@ -1586,13 +1586,13 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt ) ...@@ -1586,13 +1586,13 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt )
else if( eId == ocIf ) else if( eId == ocIf )
{ {
sal_uInt16 nNullParam = 0; sal_uInt16 nNullParam = 0;
for( nLauf = 0 ; nLauf < nCnt ; nLauf++ ) for( nPass = 0 ; nPass < nCnt ; nPass++ )
{ {
if( aPool.IsSingleOp( eParam[ nLauf ], ocMissing ) ) if( aPool.IsSingleOp( eParam[ nPass ], ocMissing ) )
{ {
if( !nNullParam ) if( !nNullParam )
nNullParam = static_cast<sal_uInt16>(aPool.Store( 0.0 )); nNullParam = static_cast<sal_uInt16>(aPool.Store( 0.0 ));
eParam[ nLauf ] = nNullParam; eParam[ nPass ] = nNullParam;
} }
} }
} }
...@@ -1602,10 +1602,10 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt ) ...@@ -1602,10 +1602,10 @@ void ExcelToSc::DoMulArgs( DefTokenId eId, sal_uInt8 nCnt )
{ {
// nSkipEnd is either 0 or -1 => nLast >= 0 // nSkipEnd is either 0 or -1 => nLast >= 0
aPool << eParam[ nLast ]; aPool << eParam[ nLast ];
for( nLauf = nLast - 1 ; nLauf > nSkipEnd ; nLauf-- ) for( nPass = nLast - 1 ; nPass > nSkipEnd ; nPass-- )
{ {
// nLauf > nSkipEnd => nLauf >= 0 // nPass > nSkipEnd => nPass >= 0
aPool << ocSep << eParam[nLauf]; aPool << ocSep << eParam[nPass];
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment