X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Faspell_local.h;h=f7e94141014eca635c6acba9222f8305df4ba0fa;hb=de3c8e5b80effa940c92980032389c868f377d6b;hp=645b2cd6cbd4226791070d15b9e67a60abfbd49c;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/aspell_local.h b/src/aspell_local.h index 645b2cd6cb..f7e9414101 100644 --- a/src/aspell_local.h +++ b/src/aspell_local.h @@ -30,7 +30,7 @@ public: /** * Initialise the spellchecker with the given buffer params and language. */ - ASpell(BufferParams const & params, string const & lang); + ASpell(BufferParams const & params, std::string const & lang); virtual ~ASpell(); @@ -50,21 +50,21 @@ public: virtual void accept(WordLangTuple const &); /// return the next near miss after a MISSED result - virtual string const nextMiss(); + virtual std::string const nextMiss(); /// give an error message on messy exit - virtual string const error(); + virtual std::string const error(); private: /// add a speller of the given language - void addSpeller(string const & lang); + void addSpeller(std::string const & lang); struct Speller { AspellSpeller * speller; AspellConfig * config; }; - typedef std::map Spellers; + typedef std::map Spellers; /// the spellers Spellers spellers_;