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:
Edwin Leuven 2008-03-21 09:53:25 +00:00
parent f333b5da5f
commit ed58c7dcd9
2 changed files with 0 additions and 24 deletions

View File

@ -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
{

View File

@ -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);