]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathMatrix.cpp
Make some InsetMathGrid members private
[features.git] / src / mathed / InsetMathMatrix.cpp
index 7f6700f62447a102480e2fd8a4cb87999b9c67b3..b13d00677f37e8509f74b8e56e33bda81e2ca759 100644 (file)
@@ -102,7 +102,7 @@ void InsetMathMatrix::mathmlize(MathStream & os) const
                os << MTag("mtr");
                for (col_type col = 0; col < ncols(); ++col) {
                        idx_type const i = index(row, col);
-                       if (cellinfo_[i].multi_ != CELL_PART_OF_MULTICOLUMN) {
+                       if (cellinfo(i).multi != CELL_PART_OF_MULTICOLUMN) {
                                col_type const cellcols = ncellcols(i);
                                ostringstream attr;
                                if (cellcols > 1)
@@ -136,7 +136,7 @@ void InsetMathMatrix::htmlize(HtmlStream & os) const
                        os << MTag("td", lattrib) << ETag("td") << '\n';
                for (col_type col = 0; col < ncols(); ++col) {
                        idx_type const i = index(row, col);
-                       if (cellinfo_[i].multi_ != CELL_PART_OF_MULTICOLUMN) {
+                       if (cellinfo(i).multi != CELL_PART_OF_MULTICOLUMN) {
                                col_type const cellcols = ncellcols(i);
                                ostringstream attr;
                                if (cellcols > 1)