diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2009-01-13 19:09:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2009-01-13 19:09:25 +0000 |
commit | edac16e4c3755020afbcbc436e2d9686fbec52d9 (patch) | |
tree | 4bcb7b178120fdff64bdb5119ba5871fe25a70d9 | |
parent | c0dd62e6100984c61892e079fe3e1e83ba314413 (diff) |
#i10000#: Linux/gcc with optimization: work around a link problem, compiler emits symbol for Fill(const FormularToken&) instead Fill(const FormularToken&, ExternalReferenceHelper* _pRef = NULL). Compiler bug?
-rw-r--r-- | reportdesign/source/ui/dlg/Formula.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/dlg/Formula.cxx b/reportdesign/source/ui/dlg/Formula.cxx index ae6954441..644fd4bb7 100644 --- a/reportdesign/source/ui/dlg/Formula.cxx +++ b/reportdesign/source/ui/dlg/Formula.cxx @@ -263,7 +263,7 @@ uno::Reference< sheet::XFormulaOpCodeMapper> FormulaDialog::getFormulaOpCodeMapp ::std::auto_ptr<formula::FormulaTokenArray> FormulaDialog::convertToTokenArray(const uno::Sequence< sheet::FormulaToken >& _aTokenList) { ::std::auto_ptr<formula::FormulaTokenArray> pArray(new FormulaTokenArray()); - pArray->Fill(_aTokenList); + pArray->Fill(_aTokenList, NULL); return pArray; } // ============================================================================= |