diff --git a/src/ChangeLog b/src/ChangeLog index 40dadc63f5..3c00e6dccb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-02-16 Angus Leeming + + * debug.[Ch]: add a GRAPHICS type to the enum. + 2002-02-13 Jean-Marc Lasgouttes * text.C (nextBreakPoint): use Paragraph::isLineSeparator diff --git a/src/debug.C b/src/debug.C index fcc14891cb..b5213386f5 100644 --- a/src/debug.C +++ b/src/debug.C @@ -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) diff --git a/src/debug.h b/src/debug.h index 38c0b7e3df..654c7835f9 100644 --- a/src/debug.h +++ b/src/debug.h @@ -70,7 +70,9 @@ struct Debug { /// WORKAREA = (1 << 19), /// - INSETTEXT = (1 << 20) + INSETTEXT = (1 << 20), + /// + GRAPHICS = (1 << 21) }; /// static type const ANY;