]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_kerninset.C
some (yet unfinished) up/down work
[lyx.git] / src / mathed / math_kerninset.C
index 8807f0ec5b52e6a8e0e947bdcc451af86eab2bbb..b07c8eee1e60ae6a2583d961f0ac9b76ff12fa5a 100644 (file)
@@ -16,7 +16,6 @@
 #include "math_support.h"
 #include "dimension.h"
 
-
 using std::string;
 using std::auto_ptr;
 
@@ -35,7 +34,7 @@ MathKernInset::MathKernInset(string const & s)
 {}
 
 
-auto_ptr<InsetBase> MathKernInset::clone() const
+auto_ptr<InsetBase> MathKernInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathKernInset(*this));
 }
@@ -55,7 +54,11 @@ void MathKernInset::draw(PainterInfo &, int, int) const
 
 void MathKernInset::write(WriteStream & os) const
 {
-       os << "\\kern" << wid_.asLatexString() << ' ';
+#ifdef WITH_WARNINGS
+#warning this crashs on startup!
+#endif
+       //os << "\\kern" << wid_.asLatexString() << ' ';
+       os << "\\kern0mm ";
 }