X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathString.h;h=9f94a7457fe986f056a7054fe1f159e5ceded9c4;hb=f5fe3c17be0a66b32085585962877dfc2dae9140;hp=f8d8771033a867b5b2ed7f2e5139d79fa86b6949;hpb=ed858d73e57ce7aa89e38c1bc4d799362edb0227;p=lyx.git diff --git a/src/mathed/InsetMathString.h b/src/mathed/InsetMathString.h index f8d8771033..9f94a7457f 100644 --- a/src/mathed/InsetMathString.h +++ b/src/mathed/InsetMathString.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. */ @@ -14,6 +14,8 @@ #include "InsetMath.h" +#include "support/docstring.h" + namespace lyx { @@ -26,7 +28,7 @@ public: /// explicit InsetMathString(docstring const & s); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -48,6 +50,8 @@ public: void mathmlize(MathStream &) const; /// void write(WriteStream & os) const; + /// + InsetCode lyxCode() const { return MATH_STRING_CODE; } private: virtual Inset * clone() const;