]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDots.h
fix off-by-two drawing error
[lyx.git] / src / mathed / InsetMathDots.h
index 5d1f6a5f4e70fbb3852083d20c9e3ede337e11c8..3a4358a518e0ced060b1b122a9d25f1da8516fb6 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef MATH_DOTSINSET_H
 #define MATH_DOTSINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
 
 namespace lyx {
@@ -20,7 +20,7 @@ namespace lyx {
 class latexkeys;
 
 /// The different kinds of ellipsis
-class InsetMathDots : public InsetMathDim {
+class InsetMathDots : public InsetMath {
 public:
        ///
        explicit InsetMathDots(latexkeys const * l);
@@ -29,14 +29,14 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       std::string name() const;
+       docstring name() const;
 protected:
        /// cache for the thing's height
        mutable int dh_;
        ///
        latexkeys const * key_;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };
 
 } // namespace lyx