X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.cpp;h=9c042beba8cc41c48b5e87fccb59e3c18cadd85f;hb=89342f2946abd5d01b019a729d1f160b0c9d3d50;hp=3bc981056618dda9f57ec865a9d951707fe9a91a;hpb=9d0ea8aeff32833a90b3fe64df0c5518a9e241be;p=lyx.git diff --git a/src/mathed/InsetMathLim.cpp b/src/mathed/InsetMathLim.cpp index 3bc9810566..9c042beba8 100644 --- a/src/mathed/InsetMathLim.cpp +++ b/src/mathed/InsetMathLim.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -13,14 +13,15 @@ #include "InsetMathLim.h" #include "MathData.h" #include "MathStream.h" + #include "support/debug.h" 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; @@ -70,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");