]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXKeySym.h
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / frontends / LyXKeySym.h
index 911390ff89eeddfc30606bb7601a41c9b03f6501..84b9a869f97a1af8947237df6f0b695613fc38a1 100644 (file)
@@ -1,7 +1,8 @@
 // -*- C++ -*-
 /**
  * \file LyXKeySym.h
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger and Juergen
  *
@@ -44,14 +45,15 @@ public:
         * This relies on user to use the right encoding.
         */
        virtual char getISOEncoded() const = 0;
-
-       /**
-        * We need to be able to equality compare these for the
-        * sake of the keymap business.
-        */
-       virtual bool operator==(LyXKeySym const & k) const = 0;
 };
 
+
+/**
+ * We need to be able to equality compare these for the
+ * sake of the keymap business.
+ */
+bool operator==(LyXKeySym const & k1, LyXKeySym const & k2);
+
 typedef boost::shared_ptr<LyXKeySym> LyXKeySymPtr;
 
 #endif