]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathKern.h
* up/down jumps between macro parameters
[lyx.git] / src / mathed / InsetMathKern.h
index 0f0d99e798a54a62f67dc92f638582d9c6a94a95..8a1e3ee04770031e936c2d73925b3b595bbe9244 100644 (file)
@@ -13,7 +13,7 @@
 #define MATH_CHEATINSET_H
 
 #include "InsetMath.h"
-#include "LyXLength.h"
+#include "Length.h"
 
 
 namespace lyx {
@@ -27,7 +27,7 @@ public:
        ///
        InsetMathKern();
        ///
-       explicit InsetMathKern(LyXLength const & wid);
+       explicit InsetMathKern(Length const & wid);
        ///
        explicit InsetMathKern(docstring const & wid);
        ///
@@ -39,9 +39,9 @@ public:
        ///
        void normalize(NormalStream & ns) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        /// width in em
-       LyXLength wid_;
+       Length wid_;
 };