]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
* Inset and derivatives: insetName() -> name()
[lyx.git] / src / mathed / InsetMathLim.cpp
index 3fdd3b5e8abb530d93d1e6e81be22daff6d0f5b6..ccde5013e1c411e4bfadc91abe5a9dd230b97ee9 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "InsetMathLim.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "MathStream.h"
 #include "debug.h"
 
@@ -23,7 +23,7 @@ using std::endl;
 
 
 InsetMathLim::InsetMathLim
-       (MathArray const & f, MathArray const & x, MathArray const & x0)
+       (MathData const & f, MathData const & x, MathData const & x0)
        : InsetMathNest(3)
 {
        cell(0) = f;
@@ -32,9 +32,9 @@ InsetMathLim::InsetMathLim
 }
 
 
-auto_ptr<InsetBase> InsetMathLim::doClone() const
+auto_ptr<Inset> InsetMathLim::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathLim(*this));
+       return auto_ptr<Inset>(new InsetMathLim(*this));
 }