]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
fix typo and and ukrainian
[lyx.git] / src / trans_decl.h
index 85d39e0045fc3c4d00c228add2702594916102b6..df36f7cb0d46430b930ef4f72f4ee2910d1e365c 100644 (file)
@@ -1,35 +1,38 @@
 // -*- C++ -*-
-#ifndef _Trans_Decl_h_
-#define _Trans_Decl_h_
+#ifndef Trans_Decl_h
+#define Trans_Decl_h
 
 #include "LString.h"
 #include "tex-accent.h"
 
+///
 struct Keyexc {
-       char c;         /* character to make exception */
-       LString data;   /* exception data */
-       Keyexc *next;
-       bool combined;  // Combination with another deadkey
-       tex_accent accent;      // The accent combined with
+       /// character to make exception
+       char c;
+       /// exception data
+       string data;
+       Keyexc * next;
+       /// Combination with another deadkey
+       bool combined;
+       /// The accent comined with
+       tex_accent accent;
 };
 
 ///
-typedef Keyexc *KmodException;
-
-//
-// 
-//
+typedef Keyexc * KmodException;
 
+///
 struct KmodInfo {
-       LString data;
+       ///
+       string data;
+       ///
        tex_accent accent;
-       LString allowed;
-       KmodException exception_list;    
-       
-       KmodInfo(const KmodInfo&);
+       ///
+       string allowed;
+       ///
+       KmodException exception_list;
+       ///
        KmodInfo();
-       
-       KmodInfo& operator=(const KmodInfo&);
 };
 
 #endif