]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_exfuncinset.C
forgotten file math_extern[Ch]
[features.git] / src / mathed / math_exfuncinset.C
index 8b08428c1e291ac0a11dd41325593a6bb0b74112..475932c23bb63d0144adfea38a318227607ef9d8 100644 (file)
@@ -6,9 +6,11 @@
 using std::ostream;
 
 
-MathExFuncInset::MathExFuncInset(string const & name)
+MathExFuncInset::MathExFuncInset(string const & name, MathArray const & arg)
        : MathNestInset(1), name_(name)
-{}
+{
+       cell(0) = arg;
+}
 
 
 MathInset * MathExFuncInset::clone() const