Lines Matching refs:pNewCell
796 sal_Bool ScDocFunc::PutCell( const ScAddress& rPos, ScBaseCell* pNewCell, sal_Bool bApi ) in PutCell() argument
811 pNewCell->Delete(); in PutCell()
816 sal_Bool bEditCell = ( pNewCell->GetCellType() == CELLTYPE_EDIT ); in PutCell()
823 ScBaseCell* pRedoCell = (bUndo && pNewCell) ? pNewCell->CloneWithoutNote( *pDoc, rPos ) : 0; in PutCell()
825 pDoc->PutCell( rPos, pNewCell ); in PutCell()
988 ScBaseCell* pNewCell = NULL; in InterpretEnglishString() local
1004 pNewCell = new ScFormulaCell( pDoc, rPos, pCode, eGrammar, MM_NONE ); in InterpretEnglishString()
1011 pNewCell = ScBaseCell::CreateTextCell( rText.Copy( 1 ), pDoc ); in InterpretEnglishString()
1020 pNewCell = new ScValueCell( fVal ); in InterpretEnglishString()
1026 pNewCell = ScBaseCell::CreateTextCell( rText, pDoc ); in InterpretEnglishString()
1032 return pNewCell; in InterpretEnglishString()
1043 ScBaseCell* pNewCell = NULL; in SetCellText() local
1055 pNewCell = InterpretEnglishString( rPos, rText, rFormulaNmsp, eGrammar ); in SetCellText()
1062 pNewCell = ScBaseCell::CreateTextCell( rText, pDoc ); // immer Text in SetCellText()
1065 if (pNewCell) in SetCellText()
1066 return PutCell( rPos, pNewCell, bApi ); in SetCellText()