]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathStackrel.h
g-brief loads babel internally. So don't load it ourselves.
[lyx.git] / src / mathed / InsetMathStackrel.h
index d6ac81518231201cc2608ea2c681b63d82e1f0d0..e7d6787ac6c9ce6aa4beee07d468c99635f627cf 100644 (file)
@@ -22,28 +22,32 @@ public:
        ///
        InsetMathStackrel(Buffer * buf, bool sub);
        ///
-       bool idxUpDown(Cursor &, bool up) const;
+       bool idxUpDown(Cursor &, bool up) const override;
        ///
-       MathClass mathClass() const;
+       bool idxFirst(Cursor &) const override;
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool idxLast(Cursor &) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       MathClass mathClass() const override;
        ///
-       void write(WriteStream & os) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        ///
-       void normalize(NormalStream &) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        ///
-       void mathmlize(MathStream &) const;
+       void write(TeXMathStream & os) const override;
        ///
-       void htmlize(HtmlStream &) const;
+       void normalize(NormalStream &) const override;
        ///
-       void validate(LaTeXFeatures &) const;
+       void mathmlize(MathMLStream &) const override;
        ///
-       InsetCode lyxCode() const { return MATH_STACKREL_CODE; }
+       void htmlize(HtmlStream &) const override;
+       ///
+       void validate(LaTeXFeatures &) const override;
+       ///
+       InsetCode lyxCode() const override { return MATH_STACKREL_CODE; }
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };
 
 } // namespace lyx