Avoid requiring messages with empty language.

This is a follow-up to commit 8aa2d6b1.
This commit is contained in:
Jean-Marc Lasgouttes 2015-04-15 15:27:05 +02:00
parent 68ad0bfb90
commit d592ec06b9

View File

@ -200,15 +200,13 @@ void setLocale()
if (lyxrc.gui_language == "auto") {
theLocale = QLocale::system();
code = fromqstr(theLocale.name());
// Qt tries to outsmart us and transforms en_US to C.
if (code == "C")
code = "en_US";
} else {
Language const * l = languages.getLanguage(lyxrc.gui_language);
code = l ? l->code() : string();
code = l ? l->code() : "C";
theLocale = QLocale(toqstr(code));
}
Messages::guiLanguage(code);
// Qt tries to outsmart us and transforms en_US to C.
Messages::guiLanguage((code == "C") ? "en_US" : code);
QLocale::setDefault(theLocale);
setlocale(LC_NUMERIC, "C");
}