]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCancelto.h
typo
[lyx.git] / src / mathed / InsetMathCancelto.h
index 10f942f0b24b0ad834a38f2a532665e3c2a567f6..7c7aad56d65f3cfa1b0605d291890a3566039882 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Uwe Stöhr
+ * \author Uwe Stöhr
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -22,29 +22,29 @@ public:
        ///
        explicit InsetMathCancelto(Buffer * buf);
        ///
-       bool idxUpDown(Cursor & cur, bool up) const;
+       bool idxUpDown(Cursor & cur, bool up) 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 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_CANCELTO_CODE; }
+       InsetCode lyxCode() const override { return MATH_CANCELTO_CODE; }
        /// Nothing for now
-       void mathmlize(MathStream &) const {}
+       void mathmlize(MathMLStream &) const override {}
        /// Nothing for HTML
-       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;
 };