diff options
author | René Kjellerup <rk.katana.steel@gmail.com> | 2010-11-08 20:39:11 +0100 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-11-08 14:59:18 -0500 |
commit | 7fea18e09a285f05fb2282904662ff9a62aa2821 (patch) | |
tree | 4c87566daefdea1571beb857a17d446306d00bdb /sc/source/ui | |
parent | 6a0632fe7e16a6dd25b34df34788598ba06c6771 (diff) |
comment crean up in sc
cleaned some added comments from silencing the compiler.
WritePicPr(...) has been removed since it seems unused by all
accounts.
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 ); } |