]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
Fixes to insettabular/text.
[lyx.git] / src / trans_decl.h
index 1b2937f16ab6ad10652fd38421f2196757d76023..df36f7cb0d46430b930ef4f72f4ee2910d1e365c 100644 (file)
@@ -5,32 +5,34 @@
 #include "LString.h"
 #include "tex-accent.h"
 
+///
 struct Keyexc {
-       char c;         /* character to make exception */
-       string data;    /* exception data */
+       /// character to make exception
+       char c;
+       /// exception data
+       string data;
        Keyexc * next;
-       bool combined;  // Combination with another deadkey
-       tex_accent accent;      // The accent combined with
+       /// Combination with another deadkey
+       bool combined;
+       /// The accent comined with
+       tex_accent accent;
 };
 
 ///
 typedef Keyexc * KmodException;
 
-//
-// 
-//
-
+///
 struct KmodInfo {
+       ///
        string data;
+       ///
        tex_accent accent;
+       ///
        string allowed;
-       KmodException exception_list;    
-
-       
-       //KmodInfo(const KmodInfo&);
+       ///
+       KmodException exception_list;
+       ///
        KmodInfo();
-       
-       //KmodInfo& operator= (const KmodInfo&);
 };
 
 #endif