]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_fracbase.C
index 5889f0773e9de568201bd10ed7c2e8b1ac834523..f55f7fe8d402f212a06fe5c3b0b664607ea7b744 100644 (file)
@@ -1,9 +1,18 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_fracbase.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "math_fracbase.h"
-#include "math_mathmlstream.h"
+#include "math_data.h"
+#include "cursor.h"
 
 
 MathFracbaseInset::MathFracbaseInset()
@@ -11,23 +20,24 @@ MathFracbaseInset::MathFracbaseInset()
 {}
 
 
-bool MathFracbaseInset::idxRight(idx_type &, pos_type &) const
+bool MathFracbaseInset::idxRight(LCursor &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
+bool MathFracbaseInset::idxLeft(LCursor &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxUpDown(idx_type & idx, bool up) const
+bool MathFracbaseInset::idxUpDown(LCursor & cur, bool up) const
 {
-       int target = !up;   // up ? 0 : 1, since upper cell has idx 0
-       if (idx == target)
+       MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
+       if (cur.idx() == target)
                return false;
-       idx = target;
+       cur.idx() = target;
+       cur.pos() = cell(target).x2pos(cur.x_target());
        return true;
 }