Lines Matching refs:pCell
249 ScBaseCell* pCell = aIter.GetFirst(); in DoRefConversion() local
250 while ( pCell ) in DoRefConversion()
252 if (pCell->GetCellType() == CELLTYPE_FORMULA) in DoRefConversion()
255 ((ScFormulaCell*)pCell)->GetFormula(aOld); in DoRefConversion()
261 ScAddress aPos = ((ScFormulaCell*)pCell)->aPos; in DoRefConversion()
272 pCell = aIter.GetNext(); in DoRefConversion()
322 ScBaseCell* pCell = NULL; in DoThesaurus() local
387 pDoc->GetCell(nCol, nRow, nTab, pCell); in DoThesaurus()
388 if (pCell) in DoThesaurus()
390 ((ScEditCell*) pCell)->GetData(pTObject); in DoThesaurus()
427 if (pCell && pTObject) in DoThesaurus()
430 pCell = new ScEditCell( pNewTObj, pDoc, in DoThesaurus()
432 pDoc->PutCell( nCol, nRow, nTab, pCell ); in DoThesaurus()
765 ScBaseCell* pCell = pDoc->GetCell( aCellPos ); in InsertBookmark() local
767 if (pCell) in InsertBookmark()
769 if (pCell->GetCellType() == CELLTYPE_EDIT) in InsertBookmark()
771 const EditTextObject* pOld = ((ScEditCell*)pCell)->GetData(); in InsertBookmark()
813 ScBaseCell* pCell = pDoc->GetCell( aPos ); in HasBookmarkAtCursor() local
814 if ( pCell && pCell->GetCellType() == CELLTYPE_EDIT ) in HasBookmarkAtCursor()
816 const EditTextObject* pData = ((ScEditCell*)pCell)->GetData(); in HasBookmarkAtCursor()