]> git.lyx.org Git - lyx.git/blobdiff - src/kbmap.h
move some selection related stuff over to textcursor.C
[lyx.git] / src / kbmap.h
index 482ab6c10db3d21f2e081363c2f193bff9e8da19..70dc5e81920932a40a0df8131bdb689afdb143cf 100644 (file)
 #ifndef KBMAP_H
 #define KBMAP_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "LString.h"
 #include "frontends/key_state.h"
 #include "frontends/LyXKeySym.h"
 
-#include <list>
+#include <vector>
 
 class kb_sequence;
 
@@ -91,7 +87,7 @@ private:
                return table.empty();
        }
        ///
-       typedef std::list<kb_key> Table;
+       typedef std::vector<kb_key> Table;
        ///
        Table table;
 };