X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDiff.cpp;h=3ec1160bdf5bace93eebad3f8da2caa760e53282;hb=1007714d2ec380d935d59092013ea88373bfb1df;hp=61b87a36c8b752f632261f2f08830c224bf624b1;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathDiff.cpp b/src/mathed/InsetMathDiff.cpp index 61b87a36c8..3ec1160bdf 100644 --- a/src/mathed/InsetMathDiff.cpp +++ b/src/mathed/InsetMathDiff.cpp @@ -11,7 +11,7 @@ #include #include "InsetMathDiff.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" #include "debug.h" @@ -27,13 +27,13 @@ InsetMathDiff::InsetMathDiff() {} -auto_ptr InsetMathDiff::doClone() const +auto_ptr InsetMathDiff::doClone() const { - return auto_ptr(new InsetMathDiff(*this)); + return auto_ptr(new InsetMathDiff(*this)); } -void InsetMathDiff::addDer(MathArray const & der) +void InsetMathDiff::addDer(MathData const & der) { cells_.push_back(der); }