diff options
-rw-r--r-- | sc/source/core/tool/interpr4.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx index 976f163a5e67..6380ffdf6d1f 100644 --- a/sc/source/core/tool/interpr4.cxx +++ b/sc/source/core/tool/interpr4.cxx @@ -2723,7 +2723,7 @@ void ScInterpreter::ScExternal() break; case SC_ADDINARG_DOUBLE: - aParam <<= (double) GetDouble(); + aParam <<= GetDouble(); break; case SC_ADDINARG_STRING: @@ -2835,7 +2835,7 @@ void ScInterpreter::ScExternal() { uno::Any aElem; if ( nStackType == svDouble ) - aElem <<= (double) GetDouble(); + aElem <<= GetDouble(); else if ( nStackType == svString ) aElem <<= GetString().getString(); else @@ -2881,7 +2881,7 @@ void ScInterpreter::ScExternal() switch( nStackType ) { case svDouble: - aParam <<= (double) GetDouble(); + aParam <<= GetDouble(); break; case svString: aParam <<= GetString().getString(); |