]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathLim.cpp
index ed333d933bd734c4f325eba4d6e84a583bd93d5a..ccde5013e1c411e4bfadc91abe5a9dd230b97ee9 100644 (file)
@@ -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));
 }