]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
typo
[lyx.git] / src / mathed / InsetMathDots.h
index 8a84a22219076e7ab8af84d11d296683bdba1e67..5deffe5422aee15a0159e5de450234acec82fb69 100644 (file)
@@ -23,28 +23,28 @@ class latexkeys;
 class InsetMathDots : public InsetMath {
 public:
        ///
-       explicit InsetMathDots(latexkeys const * l);
+       explicit InsetMathDots(latexkeys const * key);
        ///
-       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;
        ///
-       docstring name() const;
+       docstring name() const override;
        /// request "external features"
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
        ///
-       InsetCode lyxCode() const { return MATH_DOTS_CODE; }
+       InsetCode lyxCode() const override { return MATH_DOTS_CODE; }
        ///
-       void mathmlize(MathStream & os) const;
+       void mathmlize(MathMLStream & ms) const override;
        ///
-       void htmlize(HtmlStream & os) const;
+       void htmlize(HtmlStream & os) const override;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };
 
 } // namespace lyx