]> 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 b1137ac226ac4fcc9cbb7545ef84760f297dc82e..2a6ac48d7680e4e67420c92447176179176f2c51 100644 (file)
@@ -11,52 +11,18 @@ 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::idxFirstUp(idx_type & idx, pos_type & pos) const
-{
-       idx = 0;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxFirstDown(idx_type & idx, pos_type & pos) const
-{
-       idx = 1;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastUp(idx_type & idx, pos_type & pos) const
-{
-       idx = 0;
-       pos = cell(0).size();
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastDown(idx_type & idx, pos_type & pos) const
-{
-       idx = 1;
-       pos = cell(1).size();
-       return true;
-}
-
-
 bool MathFracbaseInset::idxUp(idx_type & idx) const
 {
        if (idx == 0)