]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
whichFont down to 5.3%
[lyx.git] / src / mathed / math_fracbase.C
index 9736d348fd368ea8437fd393a05bd27e0dc1bd54..2a6ac48d7680e4e67420c92447176179176f2c51 100644 (file)
@@ -3,6 +3,7 @@
 #endif
 
 #include "math_fracbase.h"
+#include "math_mathmlstream.h"
 
 
 MathFracbaseInset::MathFracbaseInset()
@@ -10,19 +11,19 @@ MathFracbaseInset::MathFracbaseInset()
 {}
 
 
-bool MathFracbaseInset::idxRight(int &, int &) const
+bool MathFracbaseInset::idxRight(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxLeft(int &, int &) const
+bool MathFracbaseInset::idxLeft(idx_type &, pos_type &) const
 {
        return false;
 }
 
 
-bool MathFracbaseInset::idxUp(int & idx, int &) const
+bool MathFracbaseInset::idxUp(idx_type & idx) const
 {
        if (idx == 0)
                return false;
@@ -31,42 +32,10 @@ bool MathFracbaseInset::idxUp(int & idx, int &) const
 }
 
 
-bool MathFracbaseInset::idxDown(int & idx, int &) const
+bool MathFracbaseInset::idxDown(idx_type & idx) const
 {
        if (idx == 1)
                return false;
        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;
-}