]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
Two small bugfixes for tabulars and cursor setting
[lyx.git] / src / trans_decl.h
index 85d39e0045fc3c4d00c228add2702594916102b6..5e8899234388132d058021fca826523e60122881 100644 (file)
@@ -7,7 +7,7 @@
 
 struct Keyexc {
        char c;         /* character to make exception */
-       LString data;   /* exception data */
+       string data;    /* exception data */
        Keyexc *next;
        bool combined;  // Combination with another deadkey
        tex_accent accent;      // The accent combined with
@@ -21,9 +21,9 @@ typedef Keyexc *KmodException;
 //
 
 struct KmodInfo {
-       LString data;
+       string data;
        tex_accent accent;
-       LString allowed;
+       string allowed;
        KmodException exception_list;    
        
        KmodInfo(const KmodInfo&);