X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFracBase.cpp;h=f76986a07c9db1a68d6d10f8ec5243849f85f573;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=22b0befb64a540abd0d54f6d8c3b6f12df11de4d;hpb=f497296c30e6da2f97b16da8ad1c9e96feffb16b;p=lyx.git diff --git a/src/mathed/InsetMathFracBase.cpp b/src/mathed/InsetMathFracBase.cpp index 22b0befb64..f76986a07c 100644 --- a/src/mathed/InsetMathFracBase.cpp +++ b/src/mathed/InsetMathFracBase.cpp @@ -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)