]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathOverset.h
Removed unused private variable
[lyx.git] / src / mathed / InsetMathOverset.h
index 5fdeb32e041606140c0a410aa821ec1946db8f67..1202bbcfd42c1d81796477cc5c4e79629c6893f1 100644 (file)
@@ -28,9 +28,9 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       bool idxFirst(Cursor &) const;
+       idx_type firstIdx() const { return 1; }
        ///
-       bool idxLast(Cursor &) const;
+       idx_type lastIdx() const { return 1; }
        ///
        void write(WriteStream & os) const;
        ///
@@ -38,6 +38,8 @@ public:
        ///
        void mathmlize(MathStream &) const;
        ///
+       void htmlize(HtmlStream &) const;
+       ///
        void validate(LaTeXFeatures & features) const;
        ///
        InsetCode lyxCode() const { return MATH_OVERSET_CODE; }