X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRoot.h;h=cfcac0a7f3189b68bf368cbd8fd6093e3009c7ae;hb=48b09463dd23e64fab605553a91542198e8361e4;hp=5872849750dbbba6a714bd575b93f58a0fb4419c;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathRoot.h b/src/mathed/InsetMathRoot.h index 5872849750..cfcac0a7f3 100644 --- a/src/mathed/InsetMathRoot.h +++ b/src/mathed/InsetMathRoot.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -23,11 +23,11 @@ namespace lyx { class InsetMathRoot : public InsetMathNest { public: /// - InsetMathRoot(); + InsetMathRoot(Buffer * buf); /// bool idxUpDown(Cursor & cur, bool up) const; /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; @@ -43,6 +43,9 @@ public: void mathematica(MathematicaStream &) const; /// void octave(OctaveStream &) const; + /// + InsetCode lyxCode() const { return MATH_ROOT_CODE; } + private: virtual Inset * clone() const; };