]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
oh well
[lyx.git] / src / mathed / math_fracbase.C
index 2a6ac48d7680e4e67420c92447176179176f2c51..bfc2b1de04cb222e640296ea008c3f035ebfb2a9 100644 (file)
@@ -23,19 +23,11 @@ bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
 }
 
 
-bool MathFracbaseInset::idxUp(idx_type & idx) const
+bool MathFracbaseInset::idxUpDown(idx_type & idx, bool up) const
 {
-       if (idx == 0)
+       MathInset::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
+       if (idx == target)
                return false;
-       idx = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxDown(idx_type & idx) const
-{
-       if (idx == 1)
-               return false;
-       idx = 1;
+       idx = target;
        return true;
 }