]> git.lyx.org Git - lyx.git/blobdiff - src/debug.h
Dekels tabular/textinset patches
[lyx.git] / src / debug.h
index 4df1f6e0a813e4a81ab100271a0984d9132dc6ec..5f4701894c969c7ca73c720b87553a4da7b7fc84 100644 (file)
@@ -65,16 +65,21 @@ struct Debug {
                ///
                DEPEND     = (1 << 16),
                ///
-               INSETS     = (1 << 17)
+               INSETS     = (1 << 17),
+               ///
+               FILES      = (1 << 18)
        };
        ///
-       static const type ANY = type(INFO | INIT | KEY | GUI |
-                                    PARSER | LYXRC | KBMAP | LATEX |
-                                    MATHED | FONT | TCLASS | LYXVC |
-                                    LYXSERVER | ROFF | ACTION | LYXLEX |
-                                    DEPEND | INSETS);
+//     static const type ANY = type(INFO | INIT | KEY | GUI |
+//                                  PARSER | LYXRC | KBMAP | LATEX |
+//                                  MATHED | FONT | TCLASS | LYXVC |
+//                                  LYXSERVER | ROFF | ACTION | LYXLEX |
+//                                  DEPEND | INSETS);
+       ///
+       static type const ANY;
+
        ///
-       friend inline void operator|=(Debug::type & d1, Debug::type d2);
+//     friend inline void operator|=(Debug::type & d1, Debug::type d2);
        
        /** A function to convert symbolic string names on debug levels
            to their numerical value.
@@ -94,7 +99,7 @@ struct Debug {
 
 
 inline
-void operator|= (Debug::type & d1, Debug::type d2)
+void operator|=(Debug::type & d1, Debug::type d2)
 {
        d1 = static_cast<Debug::type>(d1 | d2);
 }