X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathLefteqn.h;h=87ff656d933f3435ad58c8417556fef56b38f319;hb=7513d88350867812de3505bcffb9d2f826e52937;hp=6742e7327e26b42d1b4d66b6bbda9dad15a5781f;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathLefteqn.h b/src/mathed/InsetMathLefteqn.h index 6742e7327e..87ff656d93 100644 --- a/src/mathed/InsetMathLefteqn.h +++ b/src/mathed/InsetMathLefteqn.h @@ -23,20 +23,20 @@ namespace lyx { class InsetMathLefteqn : public InsetMathNest { public: /// - InsetMathLefteqn(); + explicit InsetMathLefteqn(Buffer * buf); /// - docstring name() const; + docstring name() const override; /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const override; /// - void draw(PainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const override; /// - void infoize(odocstream & os) const; + void infoize(odocstream & os) const override; /// - InsetCode lyxCode() const { return MATH_LEFTEQN_CODE; } + InsetCode lyxCode() const override { return MATH_LEFTEQN_CODE; } private: - virtual Inset * clone() const; + Inset * clone() const override; };