]> git.lyx.org Git - lyx.git/blobdiff - src/HunspellChecker.cpp
Remove all uses of Q_WS_* macros
[lyx.git] / src / HunspellChecker.cpp
index 1cac9ad09732811d37eb0a9fbf0fe8e79780b3b5..01ec19498b70e28075db5e5b8a9c6bb8c4c77e49 100644 (file)
@@ -41,8 +41,6 @@ namespace {
 typedef map<std::string, Hunspell *> Spellers;
 typedef map<std::string, PersonalWordList *> LangPersonalWordList;
 
-typedef vector<WordLangTuple> IgnoreList;
-
 docstring remap_result(docstring const & s)
 {
        // substitute RIGHT SINGLE QUOTATION MARK
@@ -78,7 +76,7 @@ struct HunspellChecker::Private
        /// the spellers
        Spellers spellers_;
        ///
-       IgnoreList ignored_;
+       WordLangTable ignored_;
        ///
        LangPersonalWordList personal_;
        ///
@@ -283,7 +281,7 @@ int HunspellChecker::Private::numDictionaries() const
 
 bool HunspellChecker::Private::isIgnored(WordLangTuple const & wl) const
 {
-       IgnoreList::const_iterator it = ignored_.begin();
+       WordLangTable::const_iterator it = ignored_.begin();
        for (; it != ignored_.end(); ++it) {
                if (it->lang()->code() != wl.lang()->code())
                        continue;
@@ -350,7 +348,7 @@ SpellChecker::Result HunspellChecker::check(WordLangTuple const & wl,
        if (d->isIgnored(wl))
                return WORD_OK;
 
-       IgnoreList::const_iterator it = docdict.begin();
+       WordLangTable::const_iterator it = docdict.begin();
        for (; it != docdict.end(); ++it) {
                if (it->lang()->code() != wl.lang()->code())
                        continue;