X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.cpp;h=ccde5013e1c411e4bfadc91abe5a9dd230b97ee9;hb=2640b2122838b7025b8494fb378b8927fca75831;hp=3fdd3b5e8abb530d93d1e6e81be22daff6d0f5b6;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathLim.cpp b/src/mathed/InsetMathLim.cpp index 3fdd3b5e8a..ccde5013e1 100644 --- a/src/mathed/InsetMathLim.cpp +++ b/src/mathed/InsetMathLim.cpp @@ -11,7 +11,7 @@ #include #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 InsetMathLim::doClone() const +auto_ptr InsetMathLim::doClone() const { - return auto_ptr(new InsetMathLim(*this)); + return auto_ptr(new InsetMathLim(*this)); }