]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathFracBase.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathFracBase.cpp
index eb997089dc8ace3aafcc4e41b2081219a5e92021..f76986a07c9db1a68d6d10f8ec5243849f85f573 100644 (file)
@@ -11,8 +11,8 @@
 #include <config.h>
 
 #include "InsetMathFracBase.h"
-#include "MathArray.h"
-#include "LCursor.h"
+#include "MathData.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)