]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_fracbase.C
remove unneeded methods
[features.git] / src / mathed / math_fracbase.C
index 9736d348fd368ea8437fd393a05bd27e0dc1bd54..e52a841fccd689220d2953e3db542bc9bc1eeb7f 100644 (file)
@@ -38,35 +38,3 @@ bool MathFracbaseInset::idxDown(int & idx, int &) const
        idx = 1;
        return true;
 }
-
-
-bool MathFracbaseInset::idxFirstUp(int & idx, int & pos) const
-{
-       idx = 0;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxFirstDown(int & idx, int & pos) const
-{
-       idx = 1;
-       pos = 0;
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastUp(int & idx, int & pos) const
-{
-       idx = 0;
-       pos = cell(idx).size();
-       return true;
-}
-
-
-bool MathFracbaseInset::idxLastDown(int & idx, int & pos) const
-{
-       idx = 1;
-       pos = cell(idx).size();
-       return true;
-}