Searched refs:rLeftOvers (Results 1 – 2 of 2) sorted by relevance
| /AOO41X/main/svx/source/table/ |
| H A D | cellcursor.cxx | 290 …ellCursor::split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector< sal_Int32 >& rLeftOvers ) in split_column() argument 301 … nNewCols = std::max( nNewCols, nColumns - xCell->getColumnSpan() + 1 - rLeftOvers[nRow] ); in split_column() 337 rLeftOvers[nRow] += nNewCols; in split_column() 347 sal_Int32 nCellsAvailable = 1 + nColSpan + rLeftOvers[nRow]; in split_column() 370 rLeftOvers[nRow++] = 0; in split_column() 378 if( nColSpan < (rLeftOvers[nRow] + nNewCols) ) in split_column() 379 mxTable->merge( nCol, nRow, (rLeftOvers[nRow] + nNewCols) + 1, nRowSpan + 1 ); in split_column() 383 rLeftOvers[nRow++] = 0; // consumed in split_column() 406 void CellCursor::split_row( sal_Int32 nRow, sal_Int32 nRows, std::vector< sal_Int32 >& rLeftOvers ) in split_row() argument 417 nNewRows = std::max( nNewRows, nRows - xCell->getRowSpan() + 1 - rLeftOvers[nCol] ); in split_row() [all …]
|
| H A D | cellcursor.hxx | 71 void split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector< sal_Int32 >& rLeftOvers ); 73 void split_row( sal_Int32 nRow, sal_Int32 nRows, std::vector< sal_Int32 >& rLeftOvers );
|