]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_undersetinset.C
revert Buffer LyxText->InsetText commit
[lyx.git] / src / mathed / math_undersetinset.C
index 4dce259f58f7cfe5dca61e01f7830efe1ab09b5d..74b8f0494d1b092e0557417fc84b8e2931867221 100644 (file)
 #include "math_undersetinset.h"
 #include "math_data.h"
 #include "math_mathmlstream.h"
-
+#include "cursor.h"
 
 using std::max;
 using std::auto_ptr;
 
 
+
 auto_ptr<InsetBase> MathUndersetInset::clone() const
 {
        return auto_ptr<InsetBase>(new MathUndersetInset(*this));
@@ -47,32 +48,29 @@ void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-bool MathUndersetInset::idxFirst(BufferView & bv) const
+bool MathUndersetInset::idxFirst(LCursor & cur) const
 {
-       CursorSlice & cur = cursorTip(bv);
        cur.idx() = 1;
        cur.pos() = 0;
        return true;
 }
 
 
-bool MathUndersetInset::idxLast(BufferView & bv) const
+bool MathUndersetInset::idxLast(LCursor & cur) const
 {
-       CursorSlice & cur = cursorTip(bv);
        cur.idx() = 1;
        cur.pos() = cur.lastpos();
        return true;
 }
 
 
-bool MathUndersetInset::idxUpDown(BufferView & bv, bool up, int targetx) const
+bool MathUndersetInset::idxUpDown(LCursor & cur, bool up) const
 {
-       CursorSlice & cur = cursorTip(bv);
        idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
        if (cur.idx() == target)
                return false;
        cur.idx() = target;
-       cur.pos() = cur.cell().x2pos(targetx);
+       cur.pos() = cur.cell().x2pos(cur.x_target());
        return true;
 }