]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathExFunc.cpp
index 77530973f80466585910cbd4f940f8d4f74dc845..1b097e928e03b31957f0c793cad6d118c86f1dd0 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "InsetMathExFunc.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "MathStream.h"
 #include "MathStream.h"
 #include "MathSupport.h"
@@ -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));
 }