]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathExFunc.cpp
index 9ede0e43403f30a58e3231a16b5f34a4f5a83e8f..1b097e928e03b31957f0c793cad6d118c86f1dd0 100644 (file)
@@ -29,16 +29,16 @@ InsetMathExFunc::InsetMathExFunc(docstring const & name)
 {}
 
 
-InsetMathExFunc::InsetMathExFunc(docstring const & name, MathArray const & ar)
+InsetMathExFunc::InsetMathExFunc(docstring const & name, MathData const & ar)
        : InsetMathNest(1), name_(name)
 {
        cell(0) = ar;
 }
 
 
-auto_ptr<InsetBase> InsetMathExFunc::doClone() const
+auto_ptr<Inset> InsetMathExFunc::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathExFunc(*this));
+       return auto_ptr<Inset>(new InsetMathExFunc(*this));
 }