]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCancel.h
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathCancel.h
index 4fc3fd0bc22a348f1232d2fa683f93b55dd5cb30..817817bfd87009a24b6a40bc201239186a02e0ce 100644 (file)
@@ -28,27 +28,27 @@ public:
        ///
        explicit InsetMathCancel(Buffer * buf, Kind);
        ///
-       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 write(WriteStream & os) const;
+       void write(TeXMathStream & os) const override;
        /// write normalized content
-       void normalize(NormalStream & ns) const;
+       void normalize(NormalStream & ns) const override;
        ///
-       void infoize(odocstream & os) const;
+       void infoize(odocstream & os) const override;
        ///
-       InsetCode lyxCode() const { return MATH_CANCEL_CODE; }
+       InsetCode lyxCode() const override { return MATH_CANCEL_CODE; }
        ///
-       void mathmlize(MathStream &) const;
+       void mathmlize(MathMLStream &) const override;
        ///
-       void htmlize(HtmlStream &) const;
+       void htmlize(HtmlStream &) const override;
        ///
-       void validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const override;
 
 private:
        ///
-       virtual Inset * clone() const;
+       Inset * clone() const override;
        ///
        Kind kind_;
 };