]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_oversetinset.C
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_oversetinset.C
index bfb42174020e01511823fb4c50292ee7ff11c25f..b16f4b2c7cf96d197b91c357c96088184d7523c0 100644 (file)
 #include <config.h>
 
 #include "math_oversetinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_support.h"
-
+#include "cursor.h"
 
 using std::max;
 using std::auto_ptr;
 
 
-MathOversetInset::MathOversetInset()
-{}
-
-
 auto_ptr<InsetBase> MathOversetInset::clone() const
 {
        return auto_ptr<InsetBase>(new MathOversetInset(*this));
@@ -51,6 +47,22 @@ void MathOversetInset::draw(PainterInfo & pi, int x, int y) const
 }
 
 
+bool MathOversetInset::idxFirst(LCursor & cur) const
+{
+       cur.idx() = 1;
+       cur.pos() = 0;
+       return true;
+}
+
+
+bool MathOversetInset::idxLast(LCursor & cur) const
+{
+       cur.idx() = 1;
+       cur.pos() = cur.lastpos();
+       return true;
+}
+
+
 void MathOversetInset::write(WriteStream & os) const
 {
        os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';