]> git.lyx.org Git - lyx.git/blobdiff - src/AspellChecker.cpp
Partially revert r34995, which broke math output. Not sure why yet....
[lyx.git] / src / AspellChecker.cpp
index 77c4b5bc85c3343dc105f15f431b28768176b263..36e8e04c8f23375ba608b61261a4e16a4328bd70 100644 (file)
@@ -224,7 +224,7 @@ AspellSpeller * AspellChecker::Private::addSpeller(string const & lang,
        }
 
        spellers_[spellerID(lang, variety)] = m;
-       return 0 == m.config ? 0 : to_aspell_speller(m.e_speller);
+       return m.e_speller ? to_aspell_speller(m.e_speller) : 0;
 }
 
 
@@ -272,8 +272,8 @@ SpellChecker::Result AspellChecker::check(WordLangTuple const & word)
                // MSVC compiled Aspell doesn't like it.
                return OK;
 
-       const char * word_str = to_utf8(word.word()).c_str();
-       int const word_ok = aspell_speller_check(m, word_str, -1);
+       string const word_str = to_utf8(word.word());
+       int const word_ok = aspell_speller_check(m, word_str.c_str(), -1);
        LASSERT(word_ok != -1, /**/);
 
        return (word_ok) ? OK : UNKNOWN_WORD;
@@ -338,7 +338,7 @@ bool AspellChecker::hasDictionary(Language const * lang) const
 
        if (lang) {
                for (; it != end && !have; ++it) {
-                       have = d->isValidDictionary(it->second.config, lang->code(), lang->variety());
+                       have = it->second.config && d->isValidDictionary(it->second.config, lang->code(), lang->variety());
                }
                if (!have) {
                        AspellConfig * config = d->getConfig(lang->code(), lang->variety());