mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Add a GRAPHICS type to the enum.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3552 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8d1c58af82
commit
d208f37600
@ -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
|
||||
|
@ -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)
|
||||
|
@ -70,7 +70,9 @@ struct Debug {
|
||||
///
|
||||
WORKAREA = (1 << 19),
|
||||
///
|
||||
INSETTEXT = (1 << 20)
|
||||
INSETTEXT = (1 << 20),
|
||||
///
|
||||
GRAPHICS = (1 << 21)
|
||||
};
|
||||
///
|
||||
static type const ANY;
|
||||
|
Loading…
Reference in New Issue
Block a user