]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathChar.h
Fix bugs #6078 and #9364
[lyx.git] / src / mathed / InsetMathChar.h
index b5f7806346d30c583bf147e69d834cad7973f794..65fac82fffb04c5067ebec2c0d4beb7f9e793068 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 André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -22,8 +22,6 @@ public:
        ///
        explicit InsetMathChar(char_type c);
        ///
-       void setBuffer(Buffer &) {}
-       ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
@@ -44,12 +42,16 @@ public:
        void octave(OctaveStream & os) const;
        ///
        void mathmlize(MathStream & ms) const;
+       ///
+       void htmlize(HtmlStream & ms) const;
        /// identifies Charinsets
        InsetMathChar const * asCharInset() const { return this; }
        ///
        char_type getChar() const { return char_; }
        ///
        bool isRelOp() const;
+       ///
+       InsetCode lyxCode() const { return MATH_CHAR_CODE; }
 
 private:
        virtual Inset * clone() const;