]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathDots.h
index 4f2428712cfc2ae60838d14fa1eb68f288be2d81..2650de004457b85607292574d4b02be572e2b5f6 100644 (file)
@@ -23,26 +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(MathStream & ms) const override;
+       ///
+       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