X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.h;h=4c47245df54955b3b381c7bef1fa0bd9209d2194;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=6189cefeab0cc0f912ab097255d5bfa20d2527b6;hpb=9ab24e95b9a0447c079fc5df86de9725ea11e53b;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.h b/src/mathed/InsetMathBoldSymbol.h index 6189cefeab..4c47245df5 100644 --- a/src/mathed/InsetMathBoldSymbol.h +++ b/src/mathed/InsetMathBoldSymbol.h @@ -28,29 +28,31 @@ public: /// InsetMathBoldSymbol(Buffer * buf, Kind kind = AMS_BOLD); /// - 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 metricsT(TextMetricsInfo const & mi, Dimension & dim) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const override; /// - void drawT(TextPainter & pi, int x, int y) const; + void drawT(TextPainter & pi, int x, int y) const override; /// - void validate(LaTeXFeatures & features) const; + void validate(LaTeXFeatures & features) const override; /// - void write(WriteStream & os) const; + void write(TeXMathStream & os) const override; /// - void mathmlize(MathStream &) const; + void mathmlize(MathMLStream &) const override; /// - void infoize(odocstream & os) const; + void htmlize(HtmlStream &) const override; /// - InsetCode lyxCode() const { return MATH_BOLDSYMBOL_CODE; } + void infoize(odocstream & os) const override; + /// + InsetCode lyxCode() const override { return MATH_BOLDSYMBOL_CODE; } /// Kind kind_; private: - virtual Inset * clone() const; + Inset * clone() const override; };