]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathEnsureMath.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / mathed / InsetMathEnsureMath.h
index 1bad7c8fb6c4ec5a9da29a4a3069efaec2af1a45..ac491aff752046ca205664be00ae00d0f0036809 100644 (file)
@@ -22,25 +22,31 @@ namespace lyx {
 /// Inset for ensuring math mode
 class InsetMathEnsureMath : public InsetMathNest {
 public:
-       InsetMathEnsureMath(Buffer * buf);
+       explicit InsetMathEnsureMath(Buffer * buf);
        ///
-       mode_type currentMode() const { return MATH_MODE; }
+       mode_type currentMode() const override { return MATH_MODE; }
        ///
-       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 metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
+       void metricsT(TextMetricsInfo const & mi, Dimension & dim) const override;
        ///
-       void drawT(TextPainter & pi, int x, int y) const;
+       void drawT(TextPainter & pi, int x, int y) const override;
        ///
-       void write(WriteStream & os) const;
+       void write(WriteStream & os) const override;
        ///
-       void infoize(odocstream & os) const;
+       void mathmlize(MathStream &) const override;
        ///
-       InsetCode lyxCode() const { return MATH_ENSUREMATH_CODE; }
+       void htmlize(HtmlStream &) const override;
+       ///
+       void infoize(odocstream & os) const override;
+       ///
+       void validate(LaTeXFeatures & features) const override;
+       ///
+       InsetCode lyxCode() const override { return MATH_ENSUREMATH_CODE; }
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const override;
 };