]> git.lyx.org Git - lyx.git/blobdiff - src/tex-accent.h
rename Inset to InsetOld
[lyx.git] / src / tex-accent.h
index eb864d71531e8cf610d25a273e6e883b1b669d6b..39567c1a5e859878bf7a6752cb664a671a251c71 100644 (file)
@@ -1,9 +1,18 @@
 // -*- C++ -*-
+/* This file is part of
+ * ======================================================
+ *
+ *           LyX, The Document Processor
+ *
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2001 The LyX Team.
+ *
+ * ====================================================== */
 
-#ifndef _TEX_ACCENT_
-#define _TEX_ACCENT_
+#ifndef TEX_ACCENT
+#define TEX_ACCENT
 
-#include "commandtags.h"
+#include "lfuns.h"
 
 /* the names used by TeX and XWindows for deadkeys/accents are not the same
    so here follows a table to clearify the differences. Please correct this
@@ -73,7 +82,7 @@ enum tex_accent {
        ///
        TEX_OGONEK,
        ///
-       TEX_MAX_ACCENT=TEX_OGONEK
+       TEX_MAX_ACCENT= TEX_OGONEK
 };
 
 
@@ -84,16 +93,18 @@ struct tex_accent_struct {
        ///
        tex_accent accent;
        ///
-       char const *cmd;
+       char const * cmd;
+#if 0
        ///
-       char const *native;
+       char const * native;
+#endif
        ///
-       char const *name;
+       char const * name;
        ///
        kb_action action;
 };
 
 ///
 extern tex_accent_struct lyx_accent_table[];
-        
+
 #endif