]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.C
oh well
[lyx.git] / src / mathed / math_matrixinset.C
index 1f43e5a9b09aa7134c7cd51d08ca570d9de5e278..330c3cef62b0ff46ef2e775e4962c270c3c24bc1 100644 (file)
@@ -8,8 +8,8 @@
 #include "Lsstream.h"
 
 
-MathMatrixInset::MathMatrixInset(MathArrayInset const & p)
-       : MathArrayInset(p)
+MathMatrixInset::MathMatrixInset(MathGridInset const & p)
+       : MathGridInset(p)
 {}
 
 
@@ -21,13 +21,13 @@ MathInset * MathMatrixInset::clone() const
 
 void MathMatrixInset::write(WriteStream & os) const
 {
-       MathArrayInset::write(os);
+       MathGridInset::write(os);
 }
 
 
 void MathMatrixInset::normalize(NormalStream & os) const
 {
-       MathArrayInset::normalize(os);
+       MathGridInset::normalize(os);
 }
 
 
@@ -56,7 +56,7 @@ void MathMatrixInset::octavize(OctaveStream & os) const
                if (row)
                        os << ';';
                os << '[';
-               for (col_type col = 0; col < ncols(); ++col) 
+               for (col_type col = 0; col < ncols(); ++col)
                        os << cell(index(row, col)) << ' ';
                os << ']';
        }