Home
last modified time | relevance | path

Searched refs:nRow1 (Results 1 – 25 of 113) sorted by relevance

12345

/AOO42X/main/sc/source/core/data/
H A Dtable3.cxx415 for (SCROW nRow = aSortParam.nRow1; nRow <= aSortParam.nRow2; nRow++) in SwapCol()
435 void ScTable::SwapRow(SCROW nRow1, SCROW nRow2) in SwapRow() argument
439 aCol[nCol].SwapRow(nRow1, nRow2); in SwapRow()
442 const ScPatternAttr* pPat1 = GetPattern(nCol, nRow1); in SwapRow()
448 SetPattern(nCol, nRow1, *pPat2, sal_True); in SwapRow()
456 bool bRow1Hidden = RowHidden(nRow1); in SwapRow()
458 SetRowHidden(nRow1, nRow1, bRow2Hidden); in SwapRow()
461 bool bRow1Filtered = RowFiltered(nRow1); in SwapRow()
463 SetRowFiltered(nRow1, nRow1, bRow2Filtered); in SwapRow()
506 void ScTable::DecoladeRow( ScSortInfoArray* pArray, SCROW nRow1, SCROW nRow2 ) in DecoladeRow() argument
[all …]
H A Dtable2.cxx385 void ScTable::DeleteArea(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, sal_uInt16 nDelFlag) in DeleteArea() argument
389 if (ValidColRow(nCol1, nRow1) && ValidColRow(nCol2, nRow2)) in DeleteArea()
396 aCol[i].DeleteArea(nRow1, nRow2, nDelFlag); in DeleteArea()
407 ApplyPatternArea( nCol1, nRow1, nCol2, nRow2, aPattern ); in DeleteArea()
439 void ScTable::CopyToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in CopyToClip() argument
442 if (ValidColRow(nCol1, nRow1) && ValidColRow(nCol2, nRow2)) in CopyToClip()
448 … aCol[i].CopyToClip(nRow1, nRow2, pTable->aCol[i], bKeepScenarioFlags, bCloneNoteCaptions); in CopyToClip()
473 pTable->aCol[i].RemoveProtected(nRow1, nRow2); in CopyToClip()
488 void ScTable::CopyFromClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in CopyFromClip() argument
496 if (ValidColRow(nCol1, nRow1) && ValidColRow(nCol2, nRow2)) in CopyFromClip()
[all …]
H A Dsortparam.cxx46 nCol1(r.nCol1),nRow1(r.nRow1),nCol2(r.nCol2),nRow2(r.nRow2), in ScSortParam()
66 nRow1=nRow2=nDestRow = 0; in Clear()
88 nRow1 = r.nRow1; in operator =()
128 && (nRow1 == rOther.nRow1) in operator ==()
159 nCol1(rSub.nCol1),nRow1(rSub.nRow1),nCol2(rSub.nCol2),nRow2(rSub.nRow2), in ScSortParam()
215 nCol1(nCol),nRow1(rParam.nRow1),nCol2(nCol),nRow2(rParam.nRow2), in ScSortParam()
240 SCsROW nDifY = ((SCsROW) nDestRow) - ((SCsROW) nRow1); in MoveToDest()
243 nRow1 = sal::static_int_cast<SCROW>( nRow1 + nDifY ); in MoveToDest()
H A Dcolumn.cxx102 sal_uInt16 ScColumn::GetBlockMatrixEdges( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const in GetBlockMatrixEdges() argument
107 if ( nRow1 == nRow2 ) in GetBlockMatrixEdges()
110 if ( Search( nRow1, nIndex ) ) in GetBlockMatrixEdges()
128 Search( nRow1, nIndex ); in GetBlockMatrixEdges()
243 bool ScColumn::HasAttrib( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const in HasAttrib() argument
245 return pAttrArray->HasAttrib( nRow1, nRow2, nMask ); in HasAttrib()
296 void ScColumn::MergePatternArea( ScMergePatternState& rState, SCROW nRow1, SCROW nRow2, sal_Bool bD… in MergePatternArea() argument
298 pAttrArray->MergePatternArea( nRow1, nRow2, rState, bDeep ); in MergePatternArea()
466 SCROW nRow1, nRow2; in ApplyPatternIfNumberformatIncompatible() local
468 nRow1, nRow2, nRow ); in ApplyPatternIfNumberformatIncompatible()
[all …]
H A Dtable4.cxx187 void ScTable::FillAnalyse( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in FillAnalyse() argument
192 DBG_ASSERT( nCol1==nCol2 || nRow1==nRow2, "FillAnalyse: falscher Bereich" ); in FillAnalyse()
208 nCount = static_cast<SCSIZE>(nRow2 - nRow1 + 1); in FillAnalyse()
218 SCROW nRow = nRow1; in FillAnalyse()
502 void ScTable::FillAuto( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in FillAuto() argument
505 if ( (nFillCount == 0) || !ValidColRow(nCol1, nRow1) || !ValidColRow(nCol2, nRow2) ) in FillAuto()
532 nISrcStart = nRow1; in FillAuto()
540 nISrcEnd = nRow1; in FillAuto()
541 nIStart = nRow1 - 1; in FillAuto()
542 nIEnd = nRow1 - nFillCount; in FillAuto()
[all …]
H A Ddocumen4.cxx120 void ScDocument::InsertMatrixFormula(SCCOL nCol1, SCROW nRow1, in InsertMatrixFormula() argument
128 PutInOrder(nRow1, nRow2); in InsertMatrixFormula()
150 ScAddress aPos( nCol1, nRow1, nTab1 ); in InsertMatrixFormula()
155 pCell->SetMatColsRows( nCol2 - nCol1 + 1, nRow2 - nRow1 + 1 ); in InsertMatrixFormula()
161 pTab[i]->PutCell(nCol1, nRow1, pCell); in InsertMatrixFormula()
163 …pTab[i]->PutCell(nCol1, nRow1, pCell->CloneWithoutNote(*this, ScAddress( nCol1, nRow1, i), SC_CLON… in InsertMatrixFormula()
170 aRefData.nRow = nRow1; in InsertMatrixFormula()
175 aRefData.CalcRelFromAbs( ScAddress( nCol1, nRow1, nTab1 ) ); in InsertMatrixFormula()
184 pTab[i]->DoColResize( nCol1, nCol2, static_cast<SCSIZE>(nRow2 - nRow1 + 1) ); in InsertMatrixFormula()
193 for (k = nRow1; k <= nRow2; k++) in InsertMatrixFormula()
[all …]
H A Dglobal2.cxx63 nRow1(0), in ScImportParam()
75 nRow1 (r.nRow1), in ScImportParam()
106 nRow1 = r.nRow1; in operator =()
122 nRow1 == rOther.nRow1 && in operator ==()
259 nCol1(r.nCol1),nRow1(r.nRow1),nCol2(r.nCol2),nRow2(r.nRow2), in ScSubTotalParam()
295 nRow1=nRow2 = 0; in Clear()
320 nRow1 = r.nRow1; in operator =()
369 && (nRow1 == rOther.nRow1) in operator ==()
H A Dsegmenttree.cxx360 void ScFlatBoolRowSegments::setTrue(SCROW nRow1, SCROW nRow2) in setTrue() argument
362 mpImpl->setTrue(static_cast<SCCOLROW>(nRow1), static_cast<SCCOLROW>(nRow2)); in setTrue()
365 void ScFlatBoolRowSegments::setFalse(SCROW nRow1, SCROW nRow2) in setFalse() argument
367 mpImpl->setFalse(static_cast<SCCOLROW>(nRow1), static_cast<SCCOLROW>(nRow2)); in setFalse()
387 void ScFlatBoolRowSegments::removeSegment(SCROW nRow1, SCROW nRow2) in removeSegment() argument
389 mpImpl->removeSegment(static_cast<SCCOLROW>(nRow1), static_cast<SCCOLROW>(nRow2)); in removeSegment()
527 void ScFlatUInt16RowSegments::setValue(SCROW nRow1, SCROW nRow2, sal_uInt16 nValue) in setValue() argument
529 mpImpl->setValue(static_cast<SCCOLROW>(nRow1), static_cast<SCCOLROW>(nRow2), nValue); in setValue()
537 sal_uInt32 ScFlatUInt16RowSegments::getSumValue(SCROW nRow1, SCROW nRow2) in getSumValue() argument
539 return mpImpl->getSumValue(static_cast<SCCOLROW>(nRow1), static_cast<SCCOLROW>(nRow2)); in getSumValue()
[all …]
/AOO42X/main/sc/source/ui/docshell/
H A Ddbdocimp.cxx147 pDBData = pDoc->GetDBAtArea( nTab, rParam.nCol1, rParam.nRow1, in DoImport()
168 SCROW nRow = rParam.nRow1; in DoImport()
434 SCROW nTestRow = rParam.nRow1 + 1; // below the title row in DoImport()
444 aTester.TestBlock( pDoc, nTab, rParam.nCol1,rParam.nRow1,rParam.nCol2,rParam.nRow2 ); in DoImport()
445 aTester.TestBlock( pDoc, nTab, rParam.nCol1,rParam.nRow1,nEndCol,nEndRow ); in DoImport()
460 ScRange aOld( rParam.nCol1, rParam.nRow1, nTab, in DoImport()
462 ScRange aNew( rParam.nCol1, rParam.nRow1, nTab, in DoImport()
485 pDoc->CopyToDocument( rParam.nCol1, rParam.nRow1, nTab, in DoImport()
486 nMinEndCol, rParam.nRow1, nTab, in DoImport()
489 SCROW nDataStartRow = rParam.nRow1+1; in DoImport()
[all …]
H A Ddbdocfun.cxx424 ScDBData* pDBData = pDoc->GetDBAtArea( nTab, rSortParam.nCol1, rSortParam.nRow1, in Sort()
436 rSortParam.nDestRow == rSortParam.nRow1 && rSortParam.nDestTab == nTab ) in Sort()
456 ScEditableTester aTester( pDoc, nTab, aLocalParam.nCol1,aLocalParam.nRow1, in Sort()
466 aLocalParam.nCol1, aLocalParam.nRow1, nTab, in Sort()
511 pDoc->CopyToDocument( aLocalParam.nCol1, aLocalParam.nRow1, nTab, in Sort()
531 pDoc->CopyToDocument( 0, aLocalParam.nRow1, nTab, MAXCOL, aLocalParam.nRow2, nTab, in Sort()
552 ScRange aSource( rSortParam.nCol1,rSortParam.nRow1,nSrcTab, in Sort()
589 ScRange aDestPos( aLocalParam.nCol1, aLocalParam.nRow1, nTab, in Sort()
599 aLocalParam.nCol1,aLocalParam.nRow1, in Sort()
611 ScRange aDirtyRange( aLocalParam.nCol1, aLocalParam.nRow1, nTab, in Sort()
[all …]
/AOO42X/main/sc/source/core/tool/
H A Dinterpr1.cxx3926 SCROW nRow1; in ScColumns() local
3940 PopDoubleRef(nCol1, nRow1, nTab1, nCol2, nRow2, nTab2); in ScColumns()
3970 SCROW nRow1; in ScRows() local
3984 PopDoubleRef(nCol1, nRow1, nTab1, nCol2, nRow2, nTab2); in ScRows()
3986 static_cast<sal_uLong>(nRow2 - nRow1 + 1); in ScRows()
4018 SCROW nRow1; in ScTables() local
4032 PopDoubleRef(nCol1, nRow1, nTab1, nCol2, nRow2, nTab2); in ScTables()
4081 SCROW nRow1; in ScColumn() local
4083 PopSingleRef( nCol1, nRow1, nTab1 ); in ScColumn()
4090 SCROW nRow1; in ScColumn() local
[all …]
H A Dchartpos.cxx195 SCROW nRow, nRow1, nRow2; in GlueState() local
200 nRow1 = pR->aStart.Row() - nStartRow; in GlueState()
204 p = pA + (sal_uLong)nCol * nR + nRow1; in GlueState()
205 for ( nRow = nRow1; nRow <= nRow2; nRow++, p++ ) in GlueState()
290 SCROW nRow1, nRow2, iRow; in CheckColRowHeaders() local
298 aRangeListRef->First()->GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 ); in CheckColRowHeaders()
299 if ( nCol1 > nCol2 || nRow1 > nRow2 ) in CheckColRowHeaders()
305 if (lcl_hasValueDataButNoDates( pDocument, iCol, nRow1, nTab1 )) in CheckColRowHeaders()
308 for (iRow=nRow1; iRow<=nRow2 && bRowStrings; iRow++) in CheckColRowHeaders()
322 pR->GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 ); in CheckColRowHeaders()
[all …]
H A Drefupdat.cxx262 SCCOL nCol1, SCROW nRow1, SCTAB nTab1, in Update() argument
282 if ( nDx && (theRow1 >= nRow1) && (theRow2 <= nRow2) && in Update()
304 sal_Bool bExp = (bExpand && IsExpand( theRow1, theRow2, nRow1, nDy )); in Update()
305 bCut1 = lcl_MoveStart( theRow1, nRow1, nDy, MAXROW ); in Update()
306 bCut2 = lcl_MoveEnd( theRow2, nRow1, nDy, MAXROW ); in Update()
316 Expand( theRow1, theRow2, nRow1, nDy ); in Update()
321 (theRow1 >= nRow1) && (theRow2 <= nRow2) ) in Update()
344 if ((theCol1 >= nCol1-nDx) && (theRow1 >= nRow1-nDy) && (theTab1 >= nTab1-nDz) && in Update()
377 (theRow1 >= nRow1) && (theRow2 <= nRow2) ) in Update()
411 sal_Int32 nCol1, nRow1, nTab1, nCol2, nRow2, nTab2; in Update() local
[all …]
H A Dchartarr.cxx155 SCROW nRow1; in CreateMemChartSingle() local
161 aRangeListRef->First()->GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 ); in CreateMemChartSingle()
164 SCROW nStrRow = nRow1; in CreateMemChartSingle()
173 if (pDocument->RowHidden(nRow1, nTab1, nLastRow)) in CreateMemChartSingle()
174 nRow1 = nLastRow + 1; in CreateMemChartSingle()
182 if ( nRow1 <= nRow2 ) in CreateMemChartSingle()
184 nStrRow = nRow1; in CreateMemChartSingle()
185 nRow1 = sal::static_int_cast<SCROW>( nRow1 + nRowAdd ); in CreateMemChartSingle()
199 SCSIZE nTotalRows = ( nRow1 <= nRow2 ? nRow2 - nRow1 + 1 : 0 ); in CreateMemChartSingle()
202 if (nRow1 <= nRow2) in CreateMemChartSingle()
[all …]
H A Drangelst.cxx131 SCROW nRow1 = r.aStart.Row(); in Join() local
169 p->aStart.SetRow( nRow1 ); in Join()
172 else if ( p->aEnd.Row() == nRow1-1 ) in Join()
178 else if ( p->aStart.Row() == nRow1 && p->aEnd.Row() == nRow2 ) in Join()
241 SCROW nRow1; in UpdateReference() local
246 rWhere.GetVars( nCol1, nRow1, nTab1, nCol2, nRow2, nTab2 ); in UpdateReference()
257 nCol1, nRow1, nTab1, nCol2, nRow2, nTab2, in UpdateReference()
363 SCROW nRow1 = r1.aStart.Row(); in Join() local
411 rp1.aStart.SetRow( nRow1 ); in Join()
415 else if ( rp1.aEnd.Row() == nRow1-1 in Join()
[all …]
H A Dqueryparam.cxx155 nCol1(r.nCol1),nRow1(r.nRow1),nCol2(r.nCol2),nRow2(r.nRow2),nTab(r.nTab) in ScQueryParamTable()
207 nRow1=nRow2 = 0; in Clear()
232 nRow1 = r.nRow1; in operator =()
271 && (nRow1 == rOther.nRow1) in operator ==()
301 SCsROW nDifY = ((SCsROW) nDestRow) - ((SCsROW) nRow1); in MoveToDest()
305 nRow1 = sal::static_int_cast<SCROW>( nRow1 + nDifY ); in MoveToDest()
H A Ddbcolect.cxx45 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in ScDBData() argument
50 nStartRow (nRow1), in ScDBData()
390 void ScDBData::SetArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) in SetArea() argument
394 nStartRow = nRow1; in SetArea()
399 void ScDBData::MoveTo(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) in MoveTo() argument
403 long nDifY = ((long) nRow1) - ((long) nStartRow); in MoveTo()
436 SetArea( nTab, nCol1, nRow1, nCol2, nRow2 ); in MoveTo()
442 rSortParam.nRow1 = nStartRow; in GetSortParam()
491 rQueryParam.nRow1 = nStartRow; in GetQueryParam()
576 rSubTotalParam.nRow1 = nStartRow; in GetSubTotalParam()
[all …]
H A Dconsoli.cxx283 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) in AddFields() argument
290 SCROW nStartRow = nRow1; in AddFields()
298 pSrcDoc->GetString( nCol, nRow1, nTab, aTitle ); in AddFields()
520 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) in AddData() argument
523 PutInOrder(nRow1,nRow2); in AddData()
529 if ( nRow2 >= sal::static_int_cast<SCROW>(nRow1 + nRowCount) && !bRowByName ) in AddData()
532 nRow2 = sal::static_int_cast<SCROW>( nRow1 + nRowCount - 1 ); in AddData()
543 pSrcDoc->GetString(nCol1,nRow1,nTab,aThisCorner); in AddData()
559 SCROW nStartRow = nRow1; in AddData()
570 pSrcDoc->GetString(nCol,nRow1,nTab,aTitle); in AddData()
[all …]
/AOO42X/main/sc/inc/
H A Dtable.hxx295 sal_Bool IsBlockEditable( SCCOL nCol1, SCROW nRow1, SCCOL nCol2,
300 …sal_Bool HasBlockMatrixFragment( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) const;
303 …sal_Bool IsBlockEmpty( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, bool bIgnoreNote…
371 void DeleteArea(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, sal_uInt16 nDelFlag);
372 void CopyToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, ScTable* pTable,
376 …void CopyFromClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, SCsCOL nDx, SCsROW nD…
378 void StartListeningInArea( SCCOL nCol1, SCROW nRow1,
380 void BroadcastInArea( SCCOL nCol1, SCROW nRow1,
383 void CopyToTable(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
387 void UndoToTable(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
[all …]
H A Dcolumn.hxx137 void SwapRow( SCROW nRow1, SCROW nRow2 );
142 bool HasAttrib( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const;
169 sal_uInt16 GetBlockMatrixEdges( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const;
189 …void CopyToClip(SCROW nRow1, SCROW nRow2, ScColumn& rColumn, sal_Bool bKeepScenarioFlags, s…
190 void CopyFromClip(SCROW nRow1, SCROW nRow2, long nDy,
192 void StartListeningInArea( SCROW nRow1, SCROW nRow2 );
193 void BroadcastInArea( SCROW nRow1, SCROW nRow2 );
200 void MixData( SCROW nRow1, SCROW nRow2, sal_uInt16 nFunction, sal_Bool bSkipEmpty,
219 void CopyToColumn(SCROW nRow1, SCROW nRow2, sal_uInt16 nFlags, sal_Bool bMarked,
222 void UndoToColumn(SCROW nRow1, SCROW nRow2, sal_uInt16 nFlags, sal_Bool bMarked,
[all …]
/AOO42X/main/sc/source/ui/view/
H A Ddbfunc.cxx141 SCROW nRow1 = aRange.aStart.Row(), nRow2 = aRange.aEnd.Row(); in GetDBData() local
142 if (pDoc->ShrinkToDataArea( aRange.aStart.Tab(), nCol1, nRow1, nCol2, nRow2)) in GetDBData()
146 aRange.aStart.SetRow(nRow1); in GetDBData()
157 SCROW nRow1 = aRange.aStart.Row(), nRow2 = aRange.aEnd.Row(); in GetDBData() local
160 nCol1, nRow1, nCol2, nRow2, bShrinkColumnsOnly); in GetDBData()
165 aRange.aStart.SetRow(nRow1); in GetDBData()
252 ScDBData* pDBData = pDoc->GetDBAtArea( nTab, rSortParam.nCol1, rSortParam.nRow1, in UISort()
285 rSortParam.nDestRow + rSortParam.nRow2 - rSortParam.nRow1, in Sort()
352 const SCROW nRow = aParam.nRow1; in ToggleAutoFilter()
405 aParam.nRow1, in ToggleAutoFilter()
[all …]
H A Dcellsh.cxx125 SCROW nRow1, nRow2; in GetBlockState() local
127 nRow1 = aMarkRange.aStart.Row(); in GetBlockState()
141 bDisable = (!bSimpleArea) || (nRow1 == nRow2); in GetBlockState()
146 nCol1, nRow1, nCol2, nRow1, rMark ); // erste Zeile in GetBlockState()
160 nCol1, nRow1, nCol1, nRow2, rMark ); // erste Spalte in GetBlockState()
163 nCol2, nRow1, nCol2, nRow2, rMark ); // letzte Spalte in GetBlockState()
172 bDisable = (!bSimpleArea) || (nCol1 == nCol2 && nRow1 == nRow2); in GetBlockState()
177 nCol1, nRow1, nCol2, nRow1, rMark ) // erste Zeile in GetBlockState()
181 nCol1, nRow1, nCol1, nRow2, rMark ) // erste Spalte in GetBlockState()
183 nCol2, nRow1, nCol2, nRow2, rMark ); // letzte Spalte in GetBlockState()
[all …]
/AOO42X/main/sc/source/ui/undo/
H A Dundodat.cxx663 ScDBFuncUndo( pNewDocShell, ScRange( rNewParam.nCol1, rNewParam.nRow1, nNewTab, in ScUndoSubTotals()
735 ScUndoUtil::MarkSimpleBlock( pDocShell, 0, aParam.nRow1+1, nTab, in Undo()
738 pDoc->DeleteAreaTab( 0,aParam.nRow1+1, MAXCOL,aParam.nRow2, nTab, IDF_ALL ); in Undo()
740 pUndoDoc->CopyToDocument( 0, aParam.nRow1+1, nTab, MAXCOL, aParam.nRow2, nTab, in Undo()
742 pUndoDoc->UndoToDocument( 0, aParam.nRow1+1, nTab, MAXCOL, aParam.nRow2, nTab, in Undo()
745 ScUndoUtil::MarkSimpleBlock( pDocShell, aParam.nCol1,aParam.nRow1,nTab, in Undo()
776 ScUndoUtil::MarkSimpleBlock( pDocShell, aParam.nCol1,aParam.nRow1,nTab, in Redo()
800 ScDBFuncUndo( pNewDocShell, ScRange( rParam.nCol1, rParam.nRow1, nNewTab, in ScUndoSort()
835 SCROW nStartRow = aSortParam.nRow1; in Undo()
844 nEndRow = nStartRow + ( aSortParam.nRow2 - aSortParam.nRow1 ); in Undo()
[all …]
H A Dundoutil.cxx85 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ) in GetOldDBData() argument
87 ScDBData* pRet = pDoc->GetDBAtArea( nTab, nCol1, nRow1, nCol2, nRow2 ); in GetOldDBData()
121 aNewNamed, nTab, nCol1,nRow1, nCol2,nRow2, sal_True, in GetOldDBData()
122 pDoc->HasColHeader( nCol1,nRow1,nCol2,nRow2,nTab ) ); in GetOldDBData()
135 SCROW nRow1 = rRange.aStart.Row(); in PaintMore() local
139 if (nRow1 > 0) --nRow1; in PaintMore()
143 pDocShell->PostPaint( nCol1,nRow1,rRange.aStart.Tab(), in PaintMore()
/AOO42X/main/sc/source/ui/miscdlgs/
H A Dcrnrdlg.cxx239 SCROW nRow1 = theCurArea.aStart.Row(); in SetColRowData() local
241 … if ( (static_cast<SCCOLROW>(nCol2 - nCol1) >= nRow2 - nRow1) || (nCol1 == 0 && nCol2 == MAXCOL) ) in SetColRowData()
247 if ( nRow1 == 0 ) in SetColRowData()
252 theCurData.aEnd.SetRow( nRow1 - 1 ); in SetColRowData()
342 SCROW nRow1 = theCurArea.aStart.Row(); in AdjustColRowData() local
344 if ( nRow1 > 0 in AdjustColRowData()
347 theCurData.aEnd.SetRow( nRow1 - 1 ); in AdjustColRowData()
511 SCROW nRow1; //Erweiterung fuer Bereichsnamen in UpdateNames() local
537 ppSortArray[j]->GetRange(0).GetVars( nCol1, nRow1, nTab1, in UpdateNames()
545 pDoc->GetString(nCol1, nRow1, nTab1,rString); in UpdateNames()
[all …]

12345