]> git.lyx.org Git - features.git/commitdiff
Generate a proper error dialog title for XeTeX/LuaTeX
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 10 Jul 2016 09:14:03 +0000 (11:14 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 10 Jul 2016 14:04:24 +0000 (16:04 +0200)
(see bug #10013)

Candidate for stable

src/frontends/qt4/GuiErrorList.cpp
status.22x

index 9d908ad5e011e10def0aa943b45ac0a61331cc6c..35786d14b7652517ce94e64df588d12b96890367 100644 (file)
@@ -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;
 }
index 48592995254f10777a3fb6d4342e792b56e364c9..776285d5cd32e896704393ff574a4e07d3ae43a9 100644 (file)
@@ -168,6 +168,8 @@ What's new
 
 - Accessibility of the document class selector from keyboard (bug 10035).
 
+- Fix title of LuaTeX and XeTeX error dialogs (part of bug 10013).
+
 
 * INTERNALS