]> git.lyx.org Git - lyx.git/blobdiff - src/kbsequence.h
Fix natbib bug spotted by JMarc.
[lyx.git] / src / kbsequence.h
index 918d29fac20cd7aa78f83651d115220599f683d3..35d600a415aa0a1f3124e02ce4fbd8e505e2806a 100644 (file)
@@ -25,7 +25,7 @@ class kb_keymap;
 class kb_sequence {
 public:
        typedef std::vector<LyXKeySymPtr> KeySequence;
-       
+
        friend class kb_keymap;
 
        ///
@@ -71,13 +71,6 @@ public:
        /// Mark the sequence as deleted.
        void mark_deleted();
 
-       /**
-        * Return the value of the last keysym in the sequence
-        * in the local ISO encoding. If it does not encode
-        * in this encoding, return 0.
-        */
-       char getLastKeyEncoded() const;
-
        /// Reset sequence to become "deleted"
        void reset();
 
@@ -100,12 +93,9 @@ public:
        kb_keymap * curmap;
 
 private:
-       /// get the keysym of last in sequence
-       LyXKeySymPtr getsym() const;
-
        /**
         * Array holding the current key sequence as KeySyms.
-        * If sequence[length-1] < 0xff it can be used as ISO8859 char
+        * If sequence[length - 1] < 0xff it can be used as ISO8859 char
         */
        KeySequence sequence;