X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_inset.C;h=33f2119d5006f8fe7bc98ea6abecdc6d126c48a7;hb=ea53de7c85a432377f87a4e0cc47a027d7793a74;hp=ae0226a884c600cf4f69d6dccb59fca0c22b97cd;hpb=f7b38dbdc55ed671af3a7f78c931a92b4c431f27;p=lyx.git diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index ae0226a884..33f2119d50 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -56,61 +56,61 @@ void MathInset::substitute(MathMacro const &) {} -bool MathInset::idxNext(idx_type &, pos_type &) const +bool MathInset::idxNext(LCursor &) const { return false; } -bool MathInset::idxRight(idx_type &, pos_type &) const +bool MathInset::idxRight(LCursor &) const { return false; } -bool MathInset::idxPrev(idx_type &, pos_type &) const +bool MathInset::idxPrev(LCursor &) const { return false; } -bool MathInset::idxLeft(idx_type &, pos_type &) const +bool MathInset::idxLeft(LCursor &) const { return false; } -bool MathInset::idxUpDown(idx_type &, pos_type &, bool, int) const +bool MathInset::idxUpDown(LCursor &, bool, int) const { return false; } -bool MathInset::idxUpDown2(idx_type &, pos_type &, bool, int) const +bool MathInset::idxUpDown2(LCursor &, bool, int) const { return false; } -bool MathInset::idxFirst(idx_type &, pos_type &) const +bool MathInset::idxFirst(LCursor &) const { return false; } -bool MathInset::idxLast(idx_type &, pos_type &) const +bool MathInset::idxLast(LCursor &) const { return false; } -bool MathInset::idxHome(idx_type &, pos_type &) const +bool MathInset::idxHome(LCursor &) const { return false; } -bool MathInset::idxEnd(idx_type &, pos_type &) const +bool MathInset::idxEnd(LCursor &) const { return false; }