X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fdebug.h;h=c338b7a228edea93633a38dad9508acc0a301148;hb=ae348f8af96100a154b3792d27732d621d44ec89;hp=d19d350913459d34002507b0a4da630d1e9d8f58;hpb=5c2f0c5c4642d9302a9bb7d19327a7dc4539f079;p=lyx.git diff --git a/src/debug.h b/src/debug.h index d19d350913..c338b7a228 100644 --- a/src/debug.h +++ b/src/debug.h @@ -16,10 +16,11 @@ #include "support/debugstream.h" /** Ideally this should have been a namespace, but since we try to be - compilable on older C++ compilators too, we use a struct instead. - This is all the different debug levels that we have. -*/ -struct lyx_debug_trait { + * compilable on older C++ compilators too, we use a struct instead. + * This is all the different debug levels that we have. + */ +class lyx_debug_trait { +public: /// enum type { /// @@ -73,7 +74,11 @@ struct lyx_debug_trait { /// EXTERNAL = (1 << 23), /// - ANY = 0xffffff + PAINTING = (1 << 24), + /// + DEBUG = (1 << 31), + /// + ANY = 0xffffffff }; static bool match(type a, type b) {