remove dead code

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38638 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2011-05-08 10:56:53 +00:00
parent 467bf135e9
commit 8356e9e2c0
2 changed files with 0 additions and 13 deletions

View File

@ -688,17 +688,6 @@ void InsetMathGrid::addRow(row_type row)
}
void InsetMathGrid::appendRow()
{
rowinfo_.push_back(RowInfo());
//cells_.insert(cells_.end(), ncols(), MathData());
for (col_type col = 0; col < ncols(); ++col) {
cells_.push_back(cells_type::value_type());
cellinfo_.push_back(CellInfo());
}
}
void InsetMathGrid::delRow(row_type row)
{
if (nrows() == 1)

View File

@ -185,8 +185,6 @@ public:
/// swap two columns
virtual void swapCol(col_type c);
///
virtual void appendRow();
///
idx_type index(row_type r, col_type c) const;
///
bool idxBetween(idx_type idx, idx_type from, idx_type to) const;