]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
Fix reading of math macros
[lyx.git] / src / mathed / math_fracbase.C
index bfc2b1de04cb222e640296ea008c3f035ebfb2a9..ef0ca38f4613510c5afc6d2d0f9d2008c4ae5172 100644 (file)
@@ -3,7 +3,6 @@
 #endif
 
 #include "math_fracbase.h"
-#include "math_mathmlstream.h"
 
 
 MathFracbaseInset::MathFracbaseInset()
@@ -23,11 +22,13 @@ bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathFracbaseInset::idxUpDown(idx_type & idx, bool up) const
+bool MathFracbaseInset::idxUpDown(idx_type & idx, pos_type & pos, bool up,
+       int targetx) const
 {
        MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
        if (idx == target)
                return false;
        idx = target;
+       pos = cell(idx).x2pos(targetx);
        return true;
 }