Trivial compilation fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5459 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-10-21 14:58:58 +00:00
parent b04538960e
commit e372738266
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-10-21 Angus Leeming <aleem@pneumon.bg.ic.ac.uk>
* LyXKeySym.h (operator==): compilation fix. The two args should have
different names...
2002-10-20 Lars Gullik Bjønnes <larsbj@gullik.net>
* LyXKeySym.h: move operator== out of class. Separate

View File

@ -52,7 +52,7 @@ public:
* We need to be able to equality compare these for the
* sake of the keymap business.
*/
bool operator==(LyXKeySym const & k1, LyXKeySym const & k1);
bool operator==(LyXKeySym const & k1, LyXKeySym const & k2);
typedef boost::shared_ptr<LyXKeySym> LyXKeySymPtr;