Kaydet (Commit) 9367e4f8 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

#i10000#: Linux/gcc with optimization: work around a link problem, compiler…

#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?
üst 0f47ff69
...@@ -263,7 +263,7 @@ uno::Reference< sheet::XFormulaOpCodeMapper> FormulaDialog::getFormulaOpCodeMapp ...@@ -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> FormulaDialog::convertToTokenArray(const uno::Sequence< sheet::FormulaToken >& _aTokenList)
{ {
::std::auto_ptr<formula::FormulaTokenArray> pArray(new FormulaTokenArray()); ::std::auto_ptr<formula::FormulaTokenArray> pArray(new FormulaTokenArray());
pArray->Fill(_aTokenList); pArray->Fill(_aTokenList, NULL);
return pArray; return pArray;
} }
// ============================================================================= // =============================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment