]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_fracbase.C
index 5efcc40b26786879a94a7ee354a7c7e6e1b01133..2a6ac48d7680e4e67420c92447176179176f2c51 100644 (file)
@@ -11,37 +11,31 @@ MathFracbaseInset::MathFracbaseInset()
 {}
 
 
-bool MathFracbaseInset::idxRight(MathInset::idx_type &,
-                                MathInset::pos_type &) const
+bool MathFracbaseInset::idxRight(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxLeft(MathInset::idx_type &,
-                               MathInset::pos_type &) const
+bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxUp(MathInset::idx_type & idx,
-                             MathInset::pos_type & pos) const
+bool MathFracbaseInset::idxUp(idx_type & idx) const
 {
        if (idx == 0)
                return false;
        idx = 0;
-       pos = std::min(pos, cell(idx).size());
        return true;
 }
 
 
-bool MathFracbaseInset::idxDown(MathInset::idx_type & idx,
-                               MathInset::pos_type & pos) const
+bool MathFracbaseInset::idxDown(idx_type & idx) const
 {
        if (idx == 1)
                return false;
        idx = 1;
-       pos = std::min(pos, cell(idx).size());
        return true;
 }