]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.C
fix build, thesaurus
[lyx.git] / src / mathed / math_matrixinset.C
index d8a02da555b5d13a930e0d3c52990c7bb35ed0f3..1f43e5a9b09aa7134c7cd51d08ca570d9de5e278 100644 (file)
@@ -45,14 +45,7 @@ void MathMatrixInset::maplize(MapleStream & os) const
 
 void MathMatrixInset::mathmlize(MathMLStream & os) const
 {
-       os << MTag("mtable");
-       for (row_type row = 0; row < nrows(); ++row) {
-               os << MTag("mtr");
-               for (col_type col = 0; col < ncols(); ++col) 
-                       os << cell(index(row, col));
-               os << ETag("mtr");
-       }
-       os << ETag("mtable");
+       MathGridInset::mathmlize(os);
 }