]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathKern.h
Fix #7549, due to a problem in exporting to plaintext a
[lyx.git] / src / mathed / InsetMathKern.h
index cb75de01342cd55b35bd4bcaaea42d0c8e96dad2..b063e06d5b1dd3129578653e73edd38fb46db227 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.
  */
@@ -31,15 +31,22 @@ public:
        ///
        explicit InsetMathKern(docstring const & wid);
        ///
-       bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream & ns) const;
+       ///
+       void mathmlize(MathStream &) const { }
+       ///
+       void htmlize(HtmlStream &) const { }
+       ///
+       InsetCode lyxCode() const { return MATH_KERN_CODE; }
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
        /// width in em
        Length wid_;
 };