Home
last modified time | relevance | path

Searched refs:pCell (Results 1 – 25 of 133) sorted by relevance

123456

/AOO41X/main/sc/source/core/data/
H A Ddocumen7.cxx87 ScBaseCell* pCell in Broadcast() argument
92 ScHint aHint( nHint, rAddr, pCell ); in Broadcast()
105 ScBaseCell* pCell = rHint.GetCell(); in Broadcast() local
106 if ( pCell ) in Broadcast()
108 SvtBroadcaster* pBC = pCell->GetBroadcaster(); in Broadcast()
217 void ScDocument::PutInFormulaTree( ScFormulaCell* pCell ) in PutInFormulaTree() argument
219 DBG_ASSERT( pCell, "PutInFormulaTree: pCell Null" ); in PutInFormulaTree()
220 RemoveFromFormulaTree( pCell ); in PutInFormulaTree()
223 pEOFormulaTree->SetNext( pCell ); in PutInFormulaTree()
225 pFormulaTree = pCell; // kein Ende, kein Anfang.. in PutInFormulaTree()
[all …]
H A Dcolumn3.cxx87 ScBaseCell* pOldCell = pItems[nIndex].pCell; in Insert()
103 pItems[nIndex].pCell = pNewCell; in Insert()
132 pItems[nIndex].pCell = pNewCell; in Insert()
160 void ScColumn::Insert( SCROW nRow, sal_uLong nNumberFormat, ScBaseCell* pCell ) in Insert() argument
162 Insert(nRow, pCell); in Insert()
173 void ScColumn::Append( SCROW nRow, ScBaseCell* pCell ) in Append() argument
199 pItems[nCount].pCell = pCell; in Append()
211 ScBaseCell* pCell = pItems[nIndex].pCell; in Delete() local
213 pItems[nIndex].pCell = pNoteCell; // Dummy fuer Interpret in Delete()
215 ScAddress( nCol, nRow, nTab ), pCell ) ); in Delete()
[all …]
H A Dcolumn.cxx112 ScBaseCell* pCell = pItems[nIndex].pCell; in GetBlockMatrixEdges() local
113 if ( pCell->GetCellType() == CELLTYPE_FORMULA in GetBlockMatrixEdges()
114 && ((ScFormulaCell*)pCell)->GetMatrixFlag() ) in GetBlockMatrixEdges()
117 return ((ScFormulaCell*)pCell)->GetMatrixEdge( aOrg ); in GetBlockMatrixEdges()
131 ScBaseCell* pCell = pItems[nIndex].pCell; in GetBlockMatrixEdges() local
132 if ( pCell->GetCellType() == CELLTYPE_FORMULA in GetBlockMatrixEdges()
133 && ((ScFormulaCell*)pCell)->GetMatrixFlag() ) in GetBlockMatrixEdges()
135 nEdges = ((ScFormulaCell*)pCell)->GetMatrixEdge( aOrg ); in GetBlockMatrixEdges()
180 ScBaseCell* pCell = pItems[nIndex].pCell; in HasSelectionMatrixFragment() local
181 if ( pCell->GetCellType() == CELLTYPE_FORMULA in HasSelectionMatrixFragment()
[all …]
H A Dcolumn2.cxx193 ScBaseCell* pCell = pItems[nIndex].pCell; in GetNeededSize() local
246 if ( bBreak && pCell->HasValueData() && ( nFormat % SV_COUNTRY_LANGUAGE_OFFSET ) == 0 ) in GetNeededSize()
249 if ( pCell->GetCellType() != CELLTYPE_FORMULA || in GetNeededSize()
250 …( static_cast<ScFormulaCell*>(pCell)->GetStandardFormat(*pFormatter, nFormat) % SV_COUNTRY_LANGUAG… in GetNeededSize()
312 sal_uInt8 nScript = pDocument->GetScriptType( nCol, nRow, nTab, pCell ); in GetNeededSize()
327 CellType eCellType = pCell->GetCellType(); in GetNeededSize()
332 … ((eCellType == CELLTYPE_FORMULA) && ((ScFormulaCell*)pCell)->IsMultilineResult()) ); in GetNeededSize()
338 ScCellFormat::GetString( pCell, nFormat, aValStr, &pColor, in GetNeededSize()
492 if ( pCell->GetCellType() == CELLTYPE_EDIT ) in GetNeededSize()
495 ((ScEditCell*)pCell)->GetData(pData); in GetNeededSize()
[all …]
H A Ddociter.cxx126 pCell = pCol->pItems[nColPos].pCell; in GetThisCol()
132 pCell = NULL; in GetThisCol()
199 return pCell; in GetCell()
347 ScBaseCell* pCell = pCol->pItems[nColRow].pCell; in GetThis() local
349 switch (pCell->GetCellType()) in GetThis()
354 rValue = ((ScValueCell*)pCell)->GetValue(); in GetThis()
369 pCol->pItems[nColRow].pCell->GetCellType() == CELLTYPE_VALUE && in GetThis()
372 fNextValue = ((ScValueCell*)pCol->pItems[nColRow].pCell)->GetValue(); in GetThis()
388 if (!bSubTotal || !((ScFormulaCell*)pCell)->IsSubTotal()) in GetThis()
390 rErr = ((ScFormulaCell*)pCell)->GetErrCode(); in GetThis()
[all …]
H A Dvalidat.cxx190 ScFormulaCell* pCell, Window* pParent ) const in DoScript() argument
206 if ( pCell ) // wenn Zelle gesetzt, aus Interpret gerufen in DoScript()
208 bIsValue = pCell->IsValue(); in DoScript()
210 nValue = pCell->GetValue(); in DoScript()
212 pCell->GetString( aValStr ); in DoScript()
230 if ( pCell ) in DoScript()
240 if ( pCell ) in DoScript()
257 if ( eRet == ERRCODE_BASIC_METHOD_NOT_FOUND && !pCell ) in DoScript()
273 ScFormulaCell* pCell, Window* pParent ) const in DoMacro() argument
277 return DoScript( rPos, rInput, pCell, pParent ); in DoMacro()
[all …]
H A Dtable3.cxx69 ScBaseCell* pCell; member
146 pInfo->pCell = pCol->GetCell( nRow ); in CreateSortInfoArray()
160 pInfo->pCell = GetCell( nCol, nRow ); in CreateSortInfoArray()
352 pInfo1->pCell, static_cast<SCCOL>(aSortParam.nField[nSort]), pInfo1->nOrg, in Compare()
353 pInfo2->pCell, static_cast<SCCOL>(aSortParam.nField[nSort]), pInfo2->nOrg ); in Compare()
356 pInfo1->pCell, static_cast<SCCOL>(pInfo1->nOrg), aSortParam.nField[nSort], in Compare()
357 pInfo2->pCell, static_cast<SCCOL>(pInfo2->nOrg), aSortParam.nField[nSort] ); in Compare()
581 ScBaseCell* pCell; in TestRemoveSubTotals() local
587 while ( aIter.Next( nRow, pCell ) && !bWillDelete ) in TestRemoveSubTotals()
589 if ( pCell->GetCellType() == CELLTYPE_FORMULA ) in TestRemoveSubTotals()
[all …]
H A Ddocumen6.cxx131 sal_uInt8 ScDocument::GetCellScriptType( ScBaseCell* pCell, sal_uLong nNumberFormat ) in GetCellScriptType() argument
133 if ( !pCell ) in GetCellScriptType()
136 sal_uInt8 nStored = pCell->GetScriptType(); in GetCellScriptType()
142 ScCellFormat::GetString( pCell, nNumberFormat, aStr, &pColor, *xPoolHelper->GetFormTable() ); in GetCellScriptType()
146 pCell->SetScriptType( nRet ); // store for later calls in GetCellScriptType()
151 sal_uInt8 ScDocument::GetScriptType( SCCOL nCol, SCROW nRow, SCTAB nTab, ScBaseCell* pCell ) in GetScriptType() argument
155 if (!pCell) in GetScriptType()
157 pCell = GetCell( ScAddress( nCol, nRow, nTab ) ); in GetScriptType()
158 if ( !pCell ) in GetScriptType()
164 sal_uInt8 nStored = pCell->GetScriptType(); in GetScriptType()
[all …]
H A Ddbdocutl.cxx161 ScBaseCell* pCell; in PutData() local
164 pCell = NULL; in PutData()
165 pDoc->PutCell( nCol, nRow, nTab, pCell ); in PutData()
173 pCell = new ScValueCell( nVal ); in PutData()
175 pDoc->PutCell( nCol, nRow, nTab, pCell ); in PutData()
177 pDoc->PutCell( nCol, nRow, nTab, pCell, nFormatIndex ); in PutData()
183 pCell = ScBaseCell::CreateTextCell( aString, pDoc ); in PutData()
184 if ( pSimpleFlag && pCell->GetCellType() == CELLTYPE_EDIT ) in PutData()
188 pCell = NULL; in PutData()
189 pDoc->PutCell( nCol, nRow, nTab, pCell ); in PutData()
/AOO41X/main/sw/source/core/frmedt/
H A Dtblsel.cxx361 const SwLayoutFrm *pCell = pRow->FirstCell(); in GetTblSel() local
363 while( bTblIsValid && pCell && pRow->IsAnLower( pCell ) ) in GetTblSel()
365 if( !pCell->IsValid() && nLoopMax ) in GetTblSel()
371 ASSERT( pCell->IsCellFrm(), "Frame ohne Celle" ); in GetTblSel()
372 if( ::IsFrmInTblSel( pUnion->GetUnion(), pCell ) ) in GetTblSel()
375 ((SwCellFrm*)pCell)->GetTabBox(); in GetTblSel()
383 const Point aTopLeft( pCell->Frm().TopLeft() ); in GetTblSel()
384 const Point aTopRight( pCell->Frm().TopRight() ); in GetTblSel()
385 const Point aBottomLeft( pCell->Frm().BottomLeft() ); in GetTblSel()
386 const Point aBottomRight( pCell->Frm().BottomRight() ); in GetTblSel()
[all …]
/AOO41X/main/sw/source/core/docnode/
H A Dndtbl1.cxx559 SwLayoutFrm *pCell = pTab->FirstCell(); in lcl_CollectCells() local
564 while ( !pCell->IsCellFrm() ) in lcl_CollectCells()
565 pCell = pCell->GetUpper(); in lcl_CollectCells()
566 ASSERT( pCell, "Frame ist keine Zelle." ); in lcl_CollectCells()
567 if ( rUnion.IsOver( pCell->Frm() ) ) in lcl_CollectCells()
568 ::InsertCell( rArr, (SwCellFrm*)pCell ); in lcl_CollectCells()
570 SwLayoutFrm *pTmp = pCell; in lcl_CollectCells()
573 } while ( pCell->IsAnLower( pTmp ) ); in lcl_CollectCells()
574 pCell = pTmp; in lcl_CollectCells()
575 } while( pCell && pTab->IsAnLower( pCell ) ); in lcl_CollectCells()
[all …]
/AOO41X/main/sc/source/ui/view/
H A Doutput2.cxx132 …void SetPattern( const ScPatternAttr* pNew, const SfxItemSet* pSet, ScBaseCell* pCell, sal_…
135 sal_Bool SetText( ScBaseCell* pCell ); // sal_True -> pOldPattern vergessen
136 void SetTextToWidthOrHash( ScBaseCell* pCell, long nWidth );
151 sal_uLong GetResultValueFormat( const ScBaseCell* pCell ) const;
258 ScBaseCell* pCell, sal_uInt8 nScript ) in SetPattern() argument
355 pOutput->SetSyntaxColor( &aFont, pCell ); in SetPattern()
456 inline sal_Bool SameValue( ScBaseCell* pCell, ScBaseCell* pOldCell ) // pCell ist != 0 in SameValue() argument
459 pCell->GetCellType() == CELLTYPE_VALUE && in SameValue()
460 ((ScValueCell*)pCell)->GetValue() == ((ScValueCell*)pOldCell)->GetValue(); in SameValue()
463 sal_Bool ScDrawStringsVars::SetText( ScBaseCell* pCell ) in SetText() argument
[all …]
H A Dspelleng.cxx103 ScBaseCell* pCell = NULL; in FindNextConversionCell() local
130 pCell = mrDoc.GetCell( aPos ); in FindNextConversionCell()
132 if( mpUndoDoc && pCell ) in FindNextConversionCell()
134 ScBaseCell* pUndoCell = pCell->CloneWithoutNote( *mpUndoDoc ); in FindNextConversionCell()
140 if( pCell ) in FindNextConversionCell()
142 ScEditCell* pEditCell = static_cast< ScEditCell* >( pCell ); in FindNextConversionCell()
150 pCell = mrDoc.GetCell( aPos ); in FindNextConversionCell()
153 if( mpRedoDoc && pCell ) in FindNextConversionCell()
155 ScBaseCell* pRedoCell = pCell->CloneWithoutNote( *mpRedoDoc ); in FindNextConversionCell()
163 pCell = NULL; in FindNextConversionCell()
[all …]
H A Dviewfun4.cxx249 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()
[all …]
/AOO41X/main/sc/source/core/tool/
H A Dinterpr4.cxx154 sal_uLong ScInterpreter::GetCellNumberFormat( const ScAddress& rPos, const ScBaseCell* pCell) in GetCellNumberFormat() argument
159 if ( pCell ) in GetCellNumberFormat()
161 if ( pCell->GetCellType() == CELLTYPE_FORMULA ) in GetCellNumberFormat()
162 nErr = ((ScFormulaCell*)pCell)->GetErrCode(); in GetCellNumberFormat()
166 if ( pCell->GetCellType() == CELLTYPE_FORMULA in GetCellNumberFormat()
168 nFormat = ((ScFormulaCell*)pCell)->GetStandardFormat( *pFormatter, in GetCellNumberFormat()
182 double ScInterpreter::GetValueCellValue( const ScAddress& rPos, const ScValueCell* pCell ) in GetValueCellValue() argument
185 double fVal = pCell->GetValue(); in GetValueCellValue()
399 double ScInterpreter::GetCellValue( const ScAddress& rPos, const ScBaseCell* pCell ) in GetCellValue() argument
404 double nVal = GetCellValueOrZero( rPos, pCell ); in GetCellValue()
[all …]
H A Dcellform.cxx46 void ScCellFormat::GetString( ScBaseCell* pCell, sal_uLong nFormat, String& rString, in GetString() argument
59 CellType eType = pCell->GetCellType(); in GetString()
65 ((ScStringCell*)pCell)->GetString( aCellString ); in GetString()
72 ((ScEditCell*)pCell)->GetString( aCellString ); in GetString()
78 double nValue = ((ScValueCell*)pCell)->GetValue(); in GetString()
101 ScFormulaCell* pFCell = (ScFormulaCell*)pCell; in GetString()
171 void ScCellFormat::GetInputString( ScBaseCell* pCell, sal_uLong nFormat, String& rString, in GetInputString() argument
180 CellType eType = pCell->GetCellType(); in GetInputString()
185 ((ScStringCell*)pCell)->GetString( rString ); in GetInputString()
190 ((ScEditCell*)pCell)->GetString( rString ); in GetInputString()
[all …]
H A Dinterpr1.cxx419 ScBaseCell* pCell = GetCell( aAdr ); in JumpMatrix() local
420 if (HasCellEmptyData( pCell)) in JumpMatrix()
422 else if (HasCellValueData( pCell)) in JumpMatrix()
424 double fVal = GetCellValue( aAdr, pCell); in JumpMatrix()
436 GetCellString( aStr, pCell ); in JumpMatrix()
486 ScBaseCell* pCell = GetCell( aAdr ); in JumpMatrix() local
487 if (HasCellEmptyData( pCell)) in JumpMatrix()
489 else if (HasCellValueData( pCell)) in JumpMatrix()
491 double fCellVal = GetCellValue( aAdr, pCell); in JumpMatrix()
503 GetCellString( aStr, pCell ); in JumpMatrix()
[all …]
H A Ddetfunc.cxx305 ScBaseCell* pCell = aCellIter.GetFirst(); in HasError() local
306 while (pCell) in HasError()
308 if (pCell->GetCellType() == CELLTYPE_FORMULA) in HasError()
310 nError = ((ScFormulaCell*)pCell)->GetErrCode(); in HasError()
314 pCell = aCellIter.GetNext(); in HasError()
812 ScBaseCell* pCell = aCellIter.GetFirst(); in InsertPredLevelArea() local
813 while (pCell) in InsertPredLevelArea()
815 if (pCell->GetCellType() == CELLTYPE_FORMULA) in InsertPredLevelArea()
831 pCell = aCellIter.GetNext(); in InsertPredLevelArea()
840 ScBaseCell* pCell; in InsertPredLevel() local
[all …]
H A Dchartarr.cxx251 ScBaseCell* pCell; in CreateMemChartSingle() local
258 pDocument->GetCell( aCols[nCol], aRows[nRow], nTab1, pCell ); in CreateMemChartSingle()
259 if (pCell) in CreateMemChartSingle()
261 CellType eType = pCell->GetCellType(); in CreateMemChartSingle()
264 nVal = ((ScValueCell*)pCell)->GetValue(); in CreateMemChartSingle()
275 ScFormulaCell* pFCell = (ScFormulaCell*)pCell; in CreateMemChartSingle()
421 ScBaseCell* pCell = pDocument->GetCell( *pPos ); in CreateMemChartMulti() local
422 if (pCell) in CreateMemChartMulti()
424 CellType eType = pCell->GetCellType(); in CreateMemChartMulti()
427 nVal = ((ScValueCell*)pCell)->GetValue(); in CreateMemChartMulti()
[all …]
H A Dchgtrack.cxx1506 void ScChangeActionContent::SetOldValue( const ScBaseCell* pCell, in SetOldValue() argument
1510 nFormat, pCell, pFromDoc, pToDoc ); in SetOldValue()
1514 void ScChangeActionContent::SetOldValue( const ScBaseCell* pCell, in SetOldValue() argument
1518 aBigRange.aStart.MakeAddress(), pCell, pFromDoc, pToDoc ); in SetOldValue()
1522 void ScChangeActionContent::SetNewValue( const ScBaseCell* pCell, in SetNewValue() argument
1526 aBigRange.aStart.MakeAddress(), pCell, pDoc, pDoc ); in SetNewValue()
1540 void ScChangeActionContent::SetNewCell( ScBaseCell* pCell, ScDocument* pDoc, const String& rFormatt… in SetNewCell() argument
1543 pNewCell = pCell; in SetNewCell()
1551 void ScChangeActionContent::SetValueString( String& rValue, ScBaseCell*& pCell, in SetValueString() argument
1554 if ( pCell ) in SetValueString()
[all …]
/AOO41X/main/sw/source/core/layout/
H A Dtrvlfrm.cxx574 const SwLayoutFrm *pCell = pCnt->GetUpper(); in lcl_MissProtectedFrames() local
575 while ( pCell && !pCell->IsCellFrm() ) in lcl_MissProtectedFrames()
576 pCell = pCell->GetUpper(); in lcl_MissProtectedFrames()
577 if ( !pCell || in lcl_MissProtectedFrames()
578 ( ( bInReadOnly || !pCell->GetFmt()->GetProtect().IsCntntProtected() ) && in lcl_MissProtectedFrames()
579 ( !bMissHeadline || !lcl_IsInRepeatedHeadline( pCell ) ) && in lcl_MissProtectedFrames()
580 ( !bMissFollowFlowLine || !pCell->IsInFollowFlowRow() ) && in lcl_MissProtectedFrames()
581 !pCell->IsCoveredCell() ) ) in lcl_MissProtectedFrames()
611 const SwLayoutFrm *pCell = pStart->GetUpper(); in lcl_UpDown() local
612 while ( !pCell->IsCellFrm() ) in lcl_UpDown()
[all …]
/AOO41X/main/sc/source/filter/xml/
H A DXMLChangeTrackingImportHelper.cxx40 : pCell(NULL), in ScMyCellInfo()
57 : pCell(pTempCell), in ScMyCellInfo()
72 if (pCell) in ~ScMyCellInfo()
73 pCell->Delete(); in ~ScMyCellInfo()
80 if (!pCell && sFormula.getLength() && sFormulaAddress.getLength()) in CreateCell()
85 pCell = new ScFormulaCell(pDoc, aPos, sFormula, eGrammar, nMatrixFlag); in CreateCell()
86 …static_cast<ScFormulaCell*>(pCell)->SetMatColsRows(static_cast<SCCOL>(nMatrixCols), static_cast<SC… in CreateCell()
100 return pCell ? pCell->CloneWithoutNote( *pDoc ) : 0; in CreateCell()
538 ScBaseCell* pCell = NULL; in CreateContentAction() local
540 pCell = pAction->pCellInfo->CreateCell(pDoc); in CreateContentAction()
[all …]
/AOO41X/main/sw/source/filter/xml/
H A Dxmltbli.cxx1834 SwXMLTableCell_Impl *pCell = GetCell( j, i ); in FixRowSpan() local
1835 while( pCell && pCell->GetRowSpan() > 1UL ) in FixRowSpan()
1837 pCell->SetRowSpan( nRowSpan++ ); in FixRowSpan()
1838 pCell = j > 0UL ? GetCell( --j, i ) : 0; in FixRowSpan()
1848 const SwXMLTableCell_Impl *pCell = GetCell( nRow, nCol ); in ReplaceWithEmptyCell() local
1849 sal_uInt32 nLastRow = bRows ? nRow + pCell->GetRowSpan() : nRow + 1; in ReplaceWithEmptyCell()
1850 sal_uInt32 nLastCol = nCol + pCell->GetColSpan(); in ReplaceWithEmptyCell()
2006 SwXMLTableCell_Impl *pCell; in MakeTableBox() local
2008 if( ( pCell=pStartRow->GetCell(i), in MakeTableBox()
2009 pCell->GetRowSpan() > nMaxRowSpan ) ) in MakeTableBox()
[all …]
/AOO41X/main/accessibility/source/extended/
H A Daccessibletablistboxtable.cxx140 AccessibleCheckBoxCell* pCell = in ProcessWindowEvent() local
142pCell->commitEvent( AccessibleEventId::STATE_CHANGED, aNewValue, aOldValue ); in ProcessWindowEvent()
146 AccessibleBrowseBoxTableCell* pCell = in ProcessWindowEvent() local
148pCell->commitEvent( AccessibleEventId::STATE_CHANGED, aNewValue, aOldValue ); in ProcessWindowEvent()
185 … AccessibleCheckBoxCell* pCell = static_cast< AccessibleCheckBoxCell* >( xChild.get() ); in ProcessWindowEvent() local
186pCell->commitEvent( AccessibleEventId::SELECTION_CHANGED, Any(), Any() ); in ProcessWindowEvent()
190 …AccessibleBrowseBoxTableCell* pCell = static_cast< AccessibleBrowseBoxTableCell* >( xChild.get() ); in ProcessWindowEvent() local
191pCell->commitEvent( AccessibleEventId::SELECTION_CHANGED, Any(), Any() ); in ProcessWindowEvent()
232 AccessibleCheckBoxCell* pCell = in ProcessWindowEvent() local
234 pCell->SetChecked( m_pTabListBox->IsItemChecked( pEntry, nCol ) ); in ProcessWindowEvent()
[all …]
/AOO41X/main/sc/source/ui/docshell/
H A Ddocsh8.cxx542 ScBaseCell* pCell; in lcl_GetColumnTypes() local
543 pDoc->GetCell( nCol, nFirstDataRow, nTab, pCell ); in lcl_GetColumnTypes()
544 if ( !pCell || pCell->HasStringData() ) in lcl_GetColumnTypes()
550 if ( pCell && pCell->GetCellType() == CELLTYPE_FORMULA in lcl_GetColumnTypes()
554 ((ScFormulaCell*)pCell)->GetValue(), *pNumFmt, nFormat, in lcl_GetColumnTypes()
555 ((ScFormulaCell*)pCell)->GetFormatType() ); in lcl_GetColumnTypes()
684 const ScBaseCell* pCell, ScFieldEditEngine& rEditEngine ) in lcl_getLongVarCharEditString() argument
686 rEditEngine.SetText( *((const ScEditCell*)pCell)->GetData() ); in lcl_getLongVarCharEditString()
690 inline void lcl_getLongVarCharString( String& rString, ScBaseCell* pCell, in lcl_getLongVarCharString() argument
697 ScCellFormat::GetString( pCell, nFormat, rString, &pColor, rNumFmt ); in lcl_getLongVarCharString()
[all …]

123456