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 | 9367e4f8148b92025252efbee807542fa3c8b9bc (patch) | |
tree | 2390cfee685aca3f6ac6b0815baa7177b1d885e5 /reportdesign | |
parent | 0f47ff69835e4419eca174435d711b8490081d5f (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?
Diffstat (limited to 'reportdesign')
-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 63e8610f9a27..01c951b76363 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; } // ============================================================================= |