X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLColor.C;h=e1fe8c2d1fe34aae2fcd2cd53610936d982ddc0f;hb=1bb197b5d4821404cfe11509c71d1f8de7cee711;hp=7fa97fa3cae692e76d452d579d8093ef44c125b8;hpb=b60c06df7e3e2f9da35aead443e0b3fb82a3f544;p=lyx.git diff --git a/src/LColor.C b/src/LColor.C index 7fa97fa3ca..e1fe8c2d1f 100644 --- a/src/LColor.C +++ b/src/LColor.C @@ -1,8 +1,8 @@ /* This file is part of * ====================================================== - * + * * LyX, The Document Processor - * + * * Copyright 1998-2001 The LyX Team * *======================================================*/ @@ -13,8 +13,6 @@ #pragma implementation #endif -#include - #include "debug.h" #include "LColor.h" #include "support/LAssert.h" @@ -72,6 +70,7 @@ LColor::LColor() { special, N_("special character"), "special", "RoyalBlue", "special" }, { math, N_("math"), "math", "DarkBlue", "math" }, { mathbg, N_("math background"), "mathbg", "linen", "mathbg" }, + { graphicsbg, N_("graphics background"), "graphicsbg", "linen", "graphicsbg" }, { mathmacrobg, N_("Math macro background"), "mathmacrobg", "linen", "mathmacrobg" }, { mathframe, N_("math frame"), "mathframe", "Magenta", "mathframe" }, { mathcursor, N_("math cursor"), "mathcursor", "black", "mathcursor" }, @@ -84,7 +83,7 @@ LColor::LColor() { error, N_("LaTeX error"), "error", "Red", "error" }, { eolmarker, N_("end-of-line marker"), "eolmarker", "Brown", "eolmarker" }, { appendixline, N_("appendix line"), "appendixline", "Brown", "appendixline" }, - { vfillline, N_("vfill line"), "vfillline", "Brown", "vfillline" }, + { added_space, N_("added space markers"), "added_space", "Brown", "added_space" }, { topline, N_("top/bottom line"), "topline", "Brown", "topline" }, { tabularline, N_("tabular line"), "tabularline", "black", "tabularline" }, @@ -124,7 +123,7 @@ string const LColor::getGUIName(LColor::color c) const string const LColor::getX11Name(LColor::color c) const { InfoTab::const_iterator ici = infotab.find(c); - if (ici != infotab.end()) + if (ici != infotab.end()) return ici->second.x11name; lyxerr << "LyX internal error: Missing color" @@ -194,7 +193,7 @@ LColor::color LColor::getFromGUIName(string const & guiname) const LColor::color LColor::getFromLyXName(string const & lyxname) const { - + InfoTab::const_iterator ici = infotab.begin(); InfoTab::const_iterator end = infotab.end(); for (; ici != end; ++ici) {