X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxcursor.h;h=c36812befd3ac70d82f49f08ab19a6df233d88ab;hb=98c966c64594611e469313314abd1e59524adb4a;hp=cc7cb9ef90b91f22d5755a4db3353a2b323314ca;hpb=10f096880fec5afc402fc0910ff44220de0398c9;p=lyx.git diff --git a/src/lyxcursor.h b/src/lyxcursor.h index cc7cb9ef90..c36812befd 100644 --- a/src/lyxcursor.h +++ b/src/lyxcursor.h @@ -1,9 +1,9 @@ // -*- C++ -*- /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -90,7 +90,7 @@ bool operator!=(LyXCursor const & a, LyXCursor const & b) /// inline -bool operator<(LyXCursor const & a, LyXCursor const & b) +bool operator<(LyXCursor const & a, LyXCursor const & b) { // Can this be done in a nother way? return (a.y() < b.y() && a.pos() < b.pos()); @@ -98,7 +98,7 @@ bool operator<(LyXCursor const & a, LyXCursor const & b) /// inline -bool operator>(LyXCursor const & a, LyXCursor const & b) +bool operator>(LyXCursor const & a, LyXCursor const & b) { return b < a; }