]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_matrixinset.C
new hierarchy for frac-like things
[features.git] / src / mathed / math_matrixinset.C
index 81a4b064831b5e5cbd8bdc99917fdd6c8c2e166d..4684a59820c8ee3a471f888513eebe7f14bef21a 100644 (file)
@@ -77,14 +77,14 @@ int firstRelOp(MathArray const & array)
 }
 
 MathMatrixInset::MathMatrixInset(MathInsetTypes t)
-       : MathGridInset(getCols(t), 1, "formula"), objtype_(t), nonum_(1), label_(1)
+       : MathGridInset(getCols(t), 1), objtype_(t), nonum_(1), label_(1)
 {
        halign(getAlign(t, ncols()));
 }
 
 
 MathMatrixInset::MathMatrixInset()
-       : MathGridInset(1, 1, "formula"), objtype_(LM_OT_SIMPLE), nonum_(1), label_(1)
+       : MathGridInset(1, 1), objtype_(LM_OT_SIMPLE), nonum_(1), label_(1)
 {}
 
 MathInset * MathMatrixInset::clone() const