]> git.lyx.org Git - lyx.git/blobdiff - src/HunspellChecker.cpp
remove most traces of boost::regex
[lyx.git] / src / HunspellChecker.cpp
index c211b47c85747e8085503708d14138cd5ec0e7c4..a85365271a64296af18a31a18ddb69e5cba29940 100644 (file)
 #include "LyXRC.h"
 #include "WordLangTuple.h"
 
-#include "frontends/alert.h"
-
 #include "support/debug.h"
 #include "support/docstring_list.h"
 #include "support/filetools.h"
 #include "support/Package.h"
 #include "support/FileName.h"
-#include "support/gettext.h"
 #include "support/lassert.h"
 #include "support/lstrings.h"
-#include "support/os.h"
 
 #include <hunspell/hunspell.hxx>
 
@@ -47,7 +43,7 @@ typedef map<std::string, PersonalWordList *> LangPersonalWordList;
 
 typedef vector<WordLangTuple> IgnoreList;
 
-docstring remap_result(docstring const s)
+docstring remap_result(docstring const s)
 {
        // substitute RIGHT SINGLE QUOTATION MARK
        // by APOSTROPHE
@@ -234,11 +230,11 @@ Hunspell * HunspellChecker::Private::lookup(Language const * lang)
 }
 
 
-Hunspell * HunspellChecker::Private::addSpeller(Language const * lang,string & path)
+Hunspell * HunspellChecker::Private::addSpeller(Language const * lang, string & path)
 {
        if (!haveDictionary(lang, path)) {
-               spellers_[lang->lang()] = 0;
-               return 0;
+               spellers_[lang->lang()] = nullptr;
+               return nullptr;
        }
 
        FileName const affix(path + ".aff");