X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLColor.C;h=775d4c87faff52501211facdc70486992b8a7b65;hb=47b06816be86d751c29a4af4809b773baf79ceef;hp=8f884adb05a53b6df87e2c8c5da38bda829e566d;hpb=ec5d8718c51e86b6300de5de29732634cace81d3;p=lyx.git diff --git a/src/LColor.C b/src/LColor.C index 8f884adb05..775d4c87fa 100644 --- a/src/LColor.C +++ b/src/LColor.C @@ -62,9 +62,8 @@ LColor::LColor() { foreground, N_("text"), "foreground", "black", "foreground" }, { selection, N_("selection"), "selection", "LightBlue", "selection" }, { latex, N_("latex text"), "latex", "DarkRed", "latex" }, - { note, N_("note"), "note", "black", "note" }, + { note, N_("note"), "note", "yellow", "note" }, { notebg, N_("note background"), "notebg", "yellow", "notebg" }, - { noteframe, N_("note frame"), "noteframe", "black", "noteframe" }, { depthbar, N_("depth bar"), "depthbar", "IndianRed", "depthbar" }, { language, N_("language"), "language", "Blue", "language" }, { command, N_("command inset"), "command", "black", "command" }, @@ -73,6 +72,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" }, @@ -116,7 +116,7 @@ string const LColor::getGUIName(LColor::color c) const { InfoTab::const_iterator ici = infotab.find(c); if (ici != infotab.end()) - return _((*ici).second.guiname); + return _(ici->second.guiname); return "none"; } @@ -126,7 +126,7 @@ string const LColor::getX11Name(LColor::color c) const { InfoTab::const_iterator ici = infotab.find(c); if (ici != infotab.end()) - return (*ici).second.x11name; + return ici->second.x11name; lyxerr << "LyX internal error: Missing color" " entry in LColor.C for " << int(c) << '\n'; @@ -139,7 +139,7 @@ string const LColor::getLaTeXName(LColor::color c) const { InfoTab::const_iterator ici = infotab.find(c); if (ici != infotab.end()) - return (*ici).second.latexname; + return ici->second.latexname; return "black"; } @@ -148,7 +148,7 @@ string const LColor::getLyXName(LColor::color c) const { InfoTab::const_iterator ici = infotab.find(c); if (ici != infotab.end()) - return (*ici).second.lyxname; + return ici->second.lyxname; return "black"; } @@ -157,7 +157,7 @@ void LColor::setColor(LColor::color col, string const & x11name) { InfoTab::iterator iti = infotab.find(col); if (iti != infotab.end()) { - (*iti).second.x11name = x11name; + iti->second.x11name = x11name; return; } lyxerr << "LyX internal error: color and such.\n"; @@ -186,8 +186,8 @@ LColor::color LColor::getFromGUIName(string const & guiname) const InfoTab::const_iterator ici = infotab.begin(); InfoTab::const_iterator end = infotab.end(); for (; ici != end; ++ici) { - if (!compare_no_case(_((*ici).second.guiname), guiname)) - return (*ici).first; + if (!compare_no_case(_(ici->second.guiname), guiname)) + return ici->first; } return LColor::inherit; } @@ -199,8 +199,8 @@ LColor::color LColor::getFromLyXName(string const & lyxname) const InfoTab::const_iterator ici = infotab.begin(); InfoTab::const_iterator end = infotab.end(); for (; ici != end; ++ici) { - if (!compare_no_case((*ici).second.lyxname, lyxname)) - return (*ici).first; + if (!compare_no_case(ici->second.lyxname, lyxname)) + return ici->first; } return LColor::inherit; }