X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLim.h;h=634c595e7f2d796af3b89a0bd774bdf1c72fb094;hb=2c5c2a66833a0c2aefdfdb8f465a83a912e40e4b;hp=c2911c6d214846b17a06b3836e1bb6f50164a72e;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathLim.h b/src/mathed/InsetMathLim.h index c2911c6d21..634c595e7f 100644 --- a/src/mathed/InsetMathLim.h +++ b/src/mathed/InsetMathLim.h @@ -4,7 +4,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. */ @@ -24,9 +24,10 @@ namespace lyx { class InsetMathLim : public InsetMathNest { public: /// - InsetMathLim(MathData const & f, MathData const & x, MathData const & x0); + InsetMathLim(Buffer * buf, MathData const & f, MathData const & x, + MathData const & x0); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; @@ -39,9 +40,10 @@ public: /// void mathematica(MathematicaStream &) const; /// - void mathmlize(MathStream &) const; - /// void write(WriteStream & os) const; + /// + InsetCode lyxCode() const { return MATH_LIM_CODE; } + private: virtual Inset * clone() const; };