]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inset.C
fix build, thesaurus
[lyx.git] / src / mathed / math_inset.C
index 0ad48f919de86ef17aefbcadc36971969df854cb..7b1b8cfba162b1dcdcf732f8e718d3f4ac20d679 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 &)
 {}