]> git.lyx.org Git - features.git/commitdiff
Trivial compilation fix.
authorAngus Leeming <leeming@lyx.org>
Mon, 21 Oct 2002 14:58:58 +0000 (14:58 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 21 Oct 2002 14:58:58 +0000 (14:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5459 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/ChangeLog
src/frontends/LyXKeySym.h

index b6fce46ccd1ccbd0ff690375610de1cb8a1086bd..3e2cad4bc4c49e5b816b0408aed5bf638f37ee49 100644 (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
index 7c60b169eef5e267d05f5867ec255adc2d78c99f..84b9a869f97a1af8947237df6f0b695613fc38a1 100644 (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;