summaryrefslogtreecommitdiff
path: root/sw/source/core/bastyp/calc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/bastyp/calc.cxx')
-rw-r--r--sw/source/core/bastyp/calc.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/bastyp/calc.cxx b/sw/source/core/bastyp/calc.cxx
index 7864657a54e0..f03a943cc74f 100644
--- a/sw/source/core/bastyp/calc.cxx
+++ b/sw/source/core/bastyp/calc.cxx
@@ -629,18 +629,18 @@ void SwCalc::VarChange( const OUString& rStr, const SwSbxValue& rValue )
bool SwCalc::Push( const SwUserFieldType* pUserFieldType )
{
- if( aRekurStk.end() != std::find(aRekurStk.begin(), aRekurStk.end(), pUserFieldType ) )
+ if( aRekurStack.end() != std::find(aRekurStack.begin(), aRekurStack.end(), pUserFieldType ) )
return false;
- aRekurStk.push_back( pUserFieldType );
+ aRekurStack.push_back( pUserFieldType );
return true;
}
void SwCalc::Pop()
{
- OSL_ENSURE( aRekurStk.size(), "SwCalc: Pop on an invalid pointer" );
+ OSL_ENSURE( aRekurStack.size(), "SwCalc: Pop on an invalid pointer" );
- aRekurStk.pop_back();
+ aRekurStack.pop_back();
}
SwCalcOper SwCalc::GetToken()