Kaydet (Commit) f1a64e9d authored tarafından Markus Mohrhard's avatar Markus Mohrhard

replace auto_ptr with boost::scoped_ptr

Change-Id: I0775e436774308ce7a93b991f7806a429f1480ea
üst eca62e11
...@@ -318,9 +318,7 @@ bool ScFormulaDlg::calculateValue( const String& rStrExp, String& rStrResult ) ...@@ -318,9 +318,7 @@ bool ScFormulaDlg::calculateValue( const String& rStrExp, String& rStrResult )
{ {
sal_Bool bResult = sal_True; sal_Bool bResult = sal_True;
SAL_WNODEPRECATED_DECLARATIONS_PUSH boost::scoped_ptr<ScFormulaCell> pFCell( new ScFormulaCell( pDoc, aCursorPos, rStrExp ) );
::std::auto_ptr<ScFormulaCell> pFCell( new ScFormulaCell( pDoc, aCursorPos, rStrExp ) );
SAL_WNODEPRECATED_DECLARATIONS_POP
// HACK! um bei ColRowNames kein #REF! zu bekommen, // HACK! um bei ColRowNames kein #REF! zu bekommen,
// wenn ein Name eigentlich als Bereich in die Gesamt-Formel // wenn ein Name eigentlich als Bereich in die Gesamt-Formel
......
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