]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathLim.h
index 634c595e7f2d796af3b89a0bd774bdf1c72fb094..1aee218906a55c152226a085f5261b321095065c 100644 (file)
@@ -27,25 +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 write(WriteStream & os) const;
+       void write(WriteStream & os) const override;
        ///
-       InsetCode lyxCode() const { return MATH_LIM_CODE; }
+       InsetCode lyxCode() const override { return MATH_LIM_CODE; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };