diff options
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/vba/excelvbahelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/excelvbahelper.cxx b/sc/source/ui/vba/excelvbahelper.cxx index b3213a728978..99fda2b57a81 100644 --- a/sc/source/ui/vba/excelvbahelper.cxx +++ b/sc/source/ui/vba/excelvbahelper.cxx @@ -377,7 +377,7 @@ void CompileExcelFormulaToODF( ScDocument* pDoc, const String& rOldFormula, Stri } ScCompiler aCompiler( pDoc, ScAddress() ); aCompiler.SetGrammar( excel::GetFormulaGrammar( pDoc, ScAddress(), uno::Any( rtl::OUString( rOldFormula ) ) ) ); - /* ScTokenArray* pCode = */ aCompiler.CompileString( rOldFormula ); // ignore the return ? + aCompiler.CompileString( rOldFormula ); aCompiler.SetGrammar( formula::FormulaGrammar::GRAM_PODF_A1 ); aCompiler.CreateStringFromTokenArray( rNewFormula ); } |