]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathPar.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathPar.cpp
index e0b6345bda513683c80d862a228468c9db122c1c..cb63ec84543aacbb5d525ce696d8545479c99b29 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "InsetMathPar.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "MathStream.h"
 #include "support/std_ostream.h"
 
@@ -22,7 +22,7 @@ namespace lyx {
 using std::auto_ptr;
 
 
-InsetMathPar::InsetMathPar(MathArray const & ar)
+InsetMathPar::InsetMathPar(MathData const & ar)
 {
        cells_[0] = ar;
 }
@@ -60,9 +60,9 @@ void InsetMathPar::infoize(odocstream & os) const
 }
 
 
-auto_ptr<InsetBase> InsetMathPar::doClone() const
+auto_ptr<Inset> InsetMathPar::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathPar(*this));
+       return auto_ptr<Inset>(new InsetMathPar(*this));
 }