diff options
author | Eike Rathke <erack@redhat.com> | 2015-03-05 14:09:50 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-03-05 22:04:13 +0100 |
commit | c7a98ea861d4aae18c74a94772c4939391eb1a24 (patch) | |
tree | 9480d62479d6135a52b1974dbba9aa25edb569ef /formula | |
parent | 1b5a62e9da2211448ab6485fd75808758cd6e644 (diff) |
translate comments while at it
Change-Id: I62cce7321dfe038d1723c73ba9deb0450a03f0e5
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/token.cxx | 6 |
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; |