]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
fix #1073
[lyx.git] / src / mathed / math_fracbase.C
index 329da0a0cece3482edad121a1d7190938b38c886..aca9f6fcf7ecbe212041148db59916efa77a71fa 100644 (file)
@@ -1,9 +1,5 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_fracbase.h"
-#include "math_mathmlstream.h"
 
 
 MathFracbaseInset::MathFracbaseInset()
@@ -23,11 +19,13 @@ bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathFracbaseInset::idxUpDown(idx_type & idx, pos_type &, 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;
 }