X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLColor.C;h=ba6f4289ae81222988b3cb31843a8394e54685b0;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=08badd8b1079bb2d71d57c9b0bbe998ede5e43c4;hpb=1a77233c5fbbe5b8828528030e373e70fbca054a;p=lyx.git diff --git a/src/LColor.C b/src/LColor.C index 08badd8b10..ba6f4289ae 100644 --- a/src/LColor.C +++ b/src/LColor.C @@ -23,8 +23,11 @@ #include -using lyx::support::compare_ascii_no_case; -using lyx::support::ascii_lowercase; + +namespace lyx { + +using support::compare_ascii_no_case; +using support::ascii_lowercase; using std::endl; using std::string; @@ -177,7 +180,7 @@ string const LColor::getGUIName(LColor::color c) const { Pimpl::InfoTab::const_iterator it = pimpl_->infotab.find(c); if (it != pimpl_->infotab.end()) - return _(it->second.guiname); + return to_utf8(_(it->second.guiname)); return "none"; } @@ -254,7 +257,7 @@ LColor::color LColor::getFromGUIName(string const & guiname) const Pimpl::InfoTab::const_iterator it = pimpl_->infotab.begin(); Pimpl::InfoTab::const_iterator end = pimpl_->infotab.end(); for (; it != end; ++it) { - if (!compare_ascii_no_case(_(it->second.guiname), guiname)) + if (!compare_ascii_no_case(to_utf8(_(it->second.guiname)), guiname)) return it->first; } return LColor::inherit; @@ -297,3 +300,6 @@ LColor::color LColor::getFromLaTeXName(string const & latexname) const LColor lcolor; // An equally evil global system LColor instance LColor system_lcolor; + + +} // namespace lyx