]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
fix typo that put too many include paths for most people
[lyx.git] / src / trans_decl.h
index df36f7cb0d46430b930ef4f72f4ee2910d1e365c..a9b6de44e55f1faaf3bd33771120a426abd3b237 100644 (file)
@@ -5,13 +5,15 @@
 #include "LString.h"
 #include "tex-accent.h"
 
+#include <list>
+
+
 ///
 struct Keyexc {
        /// character to make exception
        char c;
        /// exception data
        string data;
-       Keyexc * next;
        /// Combination with another deadkey
        bool combined;
        /// The accent comined with
@@ -19,7 +21,7 @@ struct Keyexc {
 };
 
 ///
-typedef Keyexc * KmodException;
+typedef std::list<Keyexc> KmodException;
 
 ///
 struct KmodInfo {
@@ -28,8 +30,6 @@ struct KmodInfo {
        ///
        tex_accent accent;
        ///
-       string allowed;
-       ///
        KmodException exception_list;
        ///
        KmodInfo();