]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
whichFont down to 5.3%
[lyx.git] / src / mathed / math_inset.C
index 0ad48f919de86ef17aefbcadc36971969df854cb..5b1f844aed911e1a15cbd865402931ebeaf81f07 100644 (file)
@@ -78,6 +78,15 @@ MathArray const & MathInset::cell(idx_type) const
 }
 
 
+MathInset::idx_type MathInset::index(row_type row, col_type col) const
+{
+       if (row != 0)
+               lyxerr << "illegal row: " << row << "\n";
+       if (col != 0)
+               lyxerr << "illegal col: " << col << "\n";
+       return 0;
+}
+
 void MathInset::substitute(MathMacro const &)
 {}
 
@@ -149,10 +158,6 @@ void MathInset::idxDelete(idx_type &, bool & popit, bool & deleteit)
 }
 
 
-void MathInset::idxDeleteRange(idx_type, idx_type)
-{}
-
-
 void MathInset::normalize(NormalStream & os) const
 {
        os << "[unknown ";