]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.C
updates to latexfeatures stuff; allow empty \document_path
[lyx.git] / src / mathed / math_fracbase.C
index e52a841fccd689220d2953e3db542bc9bc1eeb7f..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,7 +32,7 @@ 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;