]> git.lyx.org Git - features.git/commitdiff
Add a GRAPHICS type to the enum.
authorAngus Leeming <leeming@lyx.org>
Sat, 16 Feb 2002 12:33:19 +0000 (12:33 +0000)
committerAngus Leeming <leeming@lyx.org>
Sat, 16 Feb 2002 12:33:19 +0000 (12:33 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3552 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/debug.C
src/debug.h

index 40dadc63f5fa838c2d492698e99fbc8e8eeed5a3..3c00e6dccb2fcfcdde17a82276bf98ad11e5a1d6 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * debug.[Ch]: add a GRAPHICS type to the enum.
+
 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
        * text.C (nextBreakPoint): use Paragraph::isLineSeparator
index fcc14891cb03bda5d207dff153776108a9e0a55d..b5213386f5c6f4a17af4b6aa3217d70b856bbc97 100644 (file)
@@ -54,7 +54,8 @@ error_item errorTags[] = {
        { Debug::INSETS,    "insets",    N_("LyX Insets")},
        { Debug::FILES,     "files",     N_("Files used by LyX")},
        { Debug::WORKAREA,  "workarea",  N_("Workarea events")},
-       { Debug::INSETTEXT, "insettext", N_("Insettext/tabular messanges")},
+       { Debug::INSETTEXT, "insettext", N_("Insettext/tabular messages")},
+       { Debug::GRAPHICS,  "graphics",  N_("Graphics conversion and loading")},
        { Debug::ANY,       "any",       N_("All debugging messages")}
 };
 
@@ -70,7 +71,7 @@ Debug::type const Debug::ANY = Debug::type(
        Debug::MATHED | Debug::FONT | Debug::TCLASS | Debug::LYXVC |
        Debug::LYXSERVER | Debug::ROFF | Debug::ACTION | Debug::LYXLEX |
        Debug::DEPEND | Debug::INSETS | Debug::FILES | Debug::WORKAREA |
-       Debug::INSETTEXT);
+       Debug::INSETTEXT | Debug::GRAPHICS);
 
 
 Debug::type Debug::value(string const & val) 
index 38c0b7e3df2514c91b5252a2ff7e3592c97f4b27..654c7835f9b05a8f648ccf37373b63f8f427f925 100644 (file)
@@ -70,7 +70,9 @@ struct Debug {
                ///
                WORKAREA   = (1 << 19),
                ///
-               INSETTEXT  = (1 << 20)
+               INSETTEXT  = (1 << 20),
+               ///
+               GRAPHICS   = (1 << 21)
        };
        ///
        static type const ANY;