mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
remove unused code
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23860 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f333b5da5f
commit
ed58c7dcd9
@ -1696,26 +1696,6 @@ Tabular::idx_type Tabular::getCellBelow(idx_type cell) const
|
||||
}
|
||||
|
||||
|
||||
Tabular::idx_type Tabular::getLastCellAbove(idx_type cell) const
|
||||
{
|
||||
if (cellRow(cell) == 0)
|
||||
return cell;
|
||||
if (!isMultiColumn(cell))
|
||||
return getCellAbove(cell);
|
||||
return cell_info[cellRow(cell) - 1][cellRightColumn(cell)].cellno;
|
||||
}
|
||||
|
||||
|
||||
Tabular::idx_type Tabular::getLastCellBelow(idx_type cell) const
|
||||
{
|
||||
if (cellRow(cell) + 1 >= rowCount())
|
||||
return cell;
|
||||
if (!isMultiColumn(cell))
|
||||
return getCellBelow(cell);
|
||||
return cell_info[cellRow(cell) + 1][cellRightColumn(cell)].cellno;
|
||||
}
|
||||
|
||||
|
||||
Tabular::idx_type Tabular::cellIndex(row_type row,
|
||||
col_type column) const
|
||||
{
|
||||
|
@ -405,10 +405,6 @@ public:
|
||||
///
|
||||
idx_type getCellBelow(idx_type cell) const;
|
||||
///
|
||||
idx_type getLastCellAbove(idx_type cell) const;
|
||||
///
|
||||
idx_type getLastCellBelow(idx_type cell) const;
|
||||
///
|
||||
idx_type cellIndex(row_type row, col_type column) const;
|
||||
///
|
||||
void setUsebox(idx_type cell, BoxType);
|
||||
|
Loading…
Reference in New Issue
Block a user