]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_braceinset.C
remove unneeded member
[lyx.git] / src / mathed / math_braceinset.C
index 81d3cc4bfd102a883edee24eae75e8f843652f5f..614666d56efe84e74f253ef59ecded74bbd43e61 100644 (file)
@@ -8,7 +8,7 @@
 #include "math_parser.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
-
+#include "support/LOstream.h"
 
 using std::max;
 
@@ -18,6 +18,13 @@ MathBraceInset::MathBraceInset()
 {}
 
 
+MathBraceInset::MathBraceInset(MathArray const & ar)
+       : MathNestInset(1)
+{
+       cell(0) = ar;
+}
+
+
 MathInset * MathBraceInset::clone() const
 {
        return new MathBraceInset(*this);