summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--formula/source/core/api/token.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/core/api/token.cxx b/formula/source/core/api/token.cxx
index 368b9b541ecb..567c12cb8350 100644
--- a/formula/source/core/api/token.cxx
+++ b/formula/source/core/api/token.cxx
@@ -910,7 +910,7 @@ FormulaToken* FormulaTokenArray::AddStringXML( const OUString& rStr )
void FormulaTokenArray::AddRecalcMode( ScRecalcMode nBits )
{
- //! Reihenfolge ist wichtig
+ //! Order is important.
if ( nBits & RECALCMODE_ALWAYS )
SetExclusiveRecalcModeAlways();
else if ( !IsRecalcModeAlways() )
@@ -928,8 +928,8 @@ bool FormulaTokenArray::HasMatrixDoubleRefOps()
{
if ( pRPN && nRPN )
{
- // RPN-Interpreter Simulation
- // als Ergebnis jeder Funktion wird einfach ein Double angenommen
+ // RPN-Interpreter simulation.
+ // Simply assumes a double as return value of each function.
boost::scoped_array<FormulaToken*> pStack(new FormulaToken* [nRPN]);
FormulaToken* pResult = new FormulaDoubleToken( 0.0 );
short sp = 0;