]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathUnderset.h
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / InsetMathUnderset.h
index ba0d223a70684cfb6b4e249e28581e48e9e45004..51311e6c6fb56e6a5c06a449c6c49dbf9395d9f5 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.
  */
 #define MATH_UNDERSETINSET_H
 
 
-#include "InsetMathFracBase.h"
+#include "InsetMathFrac.h"
+
+
+namespace lyx {
 
 /// Inset for underset
 class InsetMathUnderset : public InsetMathFracBase {
@@ -23,11 +26,11 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       bool idxFirst(LCursor & cur) const;
+       bool idxFirst(Cursor & cur) const;
        ///
-       bool idxLast(LCursor & cur) const;
+       bool idxLast(Cursor & cur) const;
        ///
-       bool idxUpDown(LCursor & cur, bool up) const;
+       bool idxUpDown(Cursor & cur, bool up) const;
        ///
        void write(WriteStream & ws) const;
        ///
@@ -35,7 +38,10 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };
 
+
+
+} // namespace lyx
 #endif