X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.cpp;h=9c042beba8cc41c48b5e87fccb59e3c18cadd85f;hb=c9609fe56a2deb40f001503c2fd707c990a2e0e2;hp=508acc237e6c0daf17e4e8ef0a7371e9dbb36e7a;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathLim.cpp b/src/mathed/InsetMathLim.cpp index 508acc237e..9c042beba8 100644 --- a/src/mathed/InsetMathLim.cpp +++ b/src/mathed/InsetMathLim.cpp @@ -19,9 +19,9 @@ namespace lyx { -InsetMathLim::InsetMathLim - (MathData const & f, MathData const & x, MathData const & x0) - : InsetMathNest(3) +InsetMathLim::InsetMathLim(Buffer * buf, MathData const & f, MathData const & x, + MathData const & x0) + : InsetMathNest(buf, 3) { cell(0) = f; cell(1) = x; @@ -71,12 +71,6 @@ void InsetMathLim::mathematica(MathematicaStream & os) const } -void InsetMathLim::mathmlize(MathStream & os) const -{ - os << "lim(" << cell(0) << ',' << cell(1) << ',' << cell(2) << ')'; -} - - void InsetMathLim::write(WriteStream &) const { LYXERR0("should not happen");