From: Juergen Spitzmueller Date: Sun, 10 Jul 2016 09:14:03 +0000 (+0200) Subject: Generate a proper error dialog title for XeTeX/LuaTeX X-Git-Tag: 2.3.0alpha1~1295 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=65173b26d55ab7fe0ac15be82730e7f99e8d8aed;p=features.git Generate a proper error dialog title for XeTeX/LuaTeX (see bug #10013) Candidate for stable --- diff --git a/src/frontends/qt4/GuiErrorList.cpp b/src/frontends/qt4/GuiErrorList.cpp index cf3a300925..fdc334f282 100644 --- a/src/frontends/qt4/GuiErrorList.cpp +++ b/src/frontends/qt4/GuiErrorList.cpp @@ -46,7 +46,9 @@ string const guiErrorType(string const & s) return N_("Literate"); else if (s == "platex") return N_("pLaTeX"); - else if (s == "latex") + else if (s == "latex" || "xetex") + // All LaTeX variants except pLaTeX + // (LaTeX, PDFLaTeX, XeTeX, LuaTeX) return N_("LaTeX"); return s; }