mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Fix strange problem reported by Stefano Franchi.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32339 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7256c934dd
commit
ab267e0f81
@ -92,13 +92,19 @@ Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
|
|||||||
string hunspell_path = external_path(lyxrc.hunspelldir_path);
|
string hunspell_path = external_path(lyxrc.hunspelldir_path);
|
||||||
LYXERR(Debug::FILES, "hunspell path: " << hunspell_path);
|
LYXERR(Debug::FILES, "hunspell path: " << hunspell_path);
|
||||||
if (hunspell_path.empty()) {
|
if (hunspell_path.empty()) {
|
||||||
|
// FIXME We'd like to issue a better error message here, but there seems
|
||||||
|
// to be a problem about thread safety, or something of the sort. If
|
||||||
|
// we issue the message using frontend::Alert, then the code comes
|
||||||
|
// back through here while the box is waiting, and causes some kind
|
||||||
|
// of crash.
|
||||||
static bool warned = false;
|
static bool warned = false;
|
||||||
if (!warned) {
|
if (!warned) {
|
||||||
frontend::Alert::error(_("Hunspell Path Not Found"),
|
|
||||||
_("You must set the Hunspell dictionary path in Tools>Preferences>Paths."));
|
|
||||||
warned = true;
|
warned = true;
|
||||||
|
LYXERR0("Hunspell path not set.");
|
||||||
|
//frontend::Alert::error(_("Hunspell Path Not Found"),
|
||||||
|
// _("You must set the Hunspell dictionary path in Tools>Preferences>Paths."));
|
||||||
}
|
}
|
||||||
return false;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
hunspell_path += "/" + lang;
|
hunspell_path += "/" + lang;
|
||||||
|
Loading…
Reference in New Issue
Block a user