* GuiErrorList.cpp: following André's advice.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@33421 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-02-11 06:58:52 +00:00
parent b17d1a820f
commit 678ace1244

View File

@ -33,15 +33,15 @@ using namespace lyx::support;
namespace { namespace {
string const guiErrorType(string const s) string const guiErrorType(string const & s)
{ {
if (s == "docbook") if (s == "docbook")
return N_("DocBook"); return N_("DocBook");
else if (s == "literate") if (s == "literate")
return N_("Literate"); return N_("Literate");
else if (s == "platex") if (s == "platex")
return N_("pLaTeX"); return N_("pLaTeX");
else if (s == "latex") if (s == "latex")
return N_("LaTeX"); return N_("LaTeX");
return s; return s;
} }