summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/excelvbahelper.cxx
diff options
context:
space:
mode:
authorRené Kjellerup <rk.katana.steel@gmail.com>2010-11-03 12:33:38 -0400
committerKohei Yoshida <kyoshida@novell.com>2010-11-03 12:34:09 -0400
commit892231d6dc012788f4776e4925fa3e22d5f4ae83 (patch)
tree4f2bcbfe7cb73329127c02d2103f9fe03f121a7c /sc/source/ui/vba/excelvbahelper.cxx
parent549fb00d597cc71dc7ecdc55e6197a62192691ce (diff)
Warning free sc module
Diffstat (limited to 'sc/source/ui/vba/excelvbahelper.cxx')
-rw-r--r--sc/source/ui/vba/excelvbahelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/excelvbahelper.cxx b/sc/source/ui/vba/excelvbahelper.cxx
index 3ca5ba861dc8..b3213a728978 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 );
+ /* ScTokenArray* pCode = */ aCompiler.CompileString( rOldFormula ); // ignore the return ?
aCompiler.SetGrammar( formula::FormulaGrammar::GRAM_PODF_A1 );
aCompiler.CreateStringFromTokenArray( rNewFormula );
}