]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.h
Fix -Winconsistent-missing-override
[lyx.git] / src / mathed / InsetMathLim.h
index 11d18dc06e2765e596535e28d718176b3e4c69e3..57c482fa36c24456d8f924cb030dda6cdb88ae74 100644 (file)
@@ -27,27 +27,25 @@ public:
        InsetMathLim(Buffer * buf, MathData const & f, MathData const & x,
                MathData const & x0);
        ///
-       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 normalize(NormalStream &) const;
+       void normalize(NormalStream &) const override;
        ///
-       void maple(MapleStream &) const;
+       void maple(MapleStream &) const override;
        ///
-       void maxima(MaximaStream &) const;
+       void maxima(MaximaStream &) const override;
        ///
-       void mathematica(MathematicaStream &) const;
+       void mathematica(MathematicaStream &) const override;
        ///
-       void mathmlize(MathStream &) const;
+       void write(TeXMathStream & os) const override;
        ///
-       void write(WriteStream & os) const;
-       ///
-       InsetCode lyxCode() const { return MATH_LIM_CODE; }
+       InsetCode lyxCode() const override { return MATH_LIM_CODE; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };