X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxcursor.h;h=1032055f0e5006f217dfe3fe6ee165907d9a3214;hb=00d24ec87650e4ac7db77ad54cb4aa2f688100f3;hp=a3025e4073fe594bd6beffa275fb32bbd1d0318f;hpb=ea853ed6130aebb78c1a10da38d41dfd635343c6;p=lyx.git diff --git a/src/lyxcursor.h b/src/lyxcursor.h index a3025e4073..1032055f0e 100644 --- a/src/lyxcursor.h +++ b/src/lyxcursor.h @@ -28,8 +28,6 @@ public: /// void par(Paragraph * p); /// - //Paragraph * par(); - /// Paragraph * par() const; /// void pos(Paragraph::size_type p); @@ -54,8 +52,6 @@ public: /// void row(Row * r); /// - //Row * row(); - /// Row * row() const; private: /// The paragraph the cursor is in. @@ -109,11 +105,7 @@ bool operator>(LyXCursor const & a, LyXCursor const & b) inline bool operator>=(LyXCursor const & a, LyXCursor const & b) { -#if 0 - return (a > b || a == b); -#else return !(a < b); -#endif } @@ -121,11 +113,7 @@ bool operator>=(LyXCursor const & a, LyXCursor const & b) inline bool operator<=(LyXCursor const & a, LyXCursor const & b) { -#if 0 - return (a < b || a == b); -#else return !(a > b); -#endif } #endif