]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathFracBase.cpp
rename LyXFont to Font except in tex2lyx
[lyx.git] / src / mathed / InsetMathFracBase.cpp
index 22b0befb64a540abd0d54f6d8c3b6f12df11de4d..f76986a07c9db1a68d6d10f8ec5243849f85f573 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "InsetMathFracBase.h"
 #include "MathData.h"
-#include "cursor.h"
+#include "Cursor.h"
 
 
 namespace lyx {
@@ -23,19 +23,19 @@ InsetMathFracBase::InsetMathFracBase()
 {}
 
 
-bool InsetMathFracBase::idxRight(LCursor &) const
+bool InsetMathFracBase::idxRight(Cursor &) const
 {
        return false;
 }
 
 
-bool InsetMathFracBase::idxLeft(LCursor &) const
+bool InsetMathFracBase::idxLeft(Cursor &) const
 {
        return false;
 }
 
 
-bool InsetMathFracBase::idxUpDown(LCursor & cur, bool up) const
+bool InsetMathFracBase::idxUpDown(Cursor & cur, bool up) const
 {
        InsetMath::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
        if (cur.idx() == target)