X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fpspell.h;h=d645aacad3b98c33b7bbc49fae748b92758f1da9;hb=37d42d45f3f4a5d3e916a080af50b37ae4a9d118;hp=bf3c1f3e99aefcbdd90468589a6b5d003d74b362;hpb=47c34c3afa59b030a4578c82fea46d926e0c0c66;p=lyx.git diff --git a/src/pspell.h b/src/pspell.h index bf3c1f3e99..d645aacad3 100644 --- a/src/pspell.h +++ b/src/pspell.h @@ -1,19 +1,22 @@ +// -*- C++ -*- /** * \file pspell.h - * Copyright 2001 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Kevin Atkinson - * \author John Levon + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ #ifndef LYX_PSPELL_H #define LYX_PSPELL_H -#include - #include "SpellBase.h" +#include + class PspellManager; class PspellStringEmulation; class PspellCanHaveError; @@ -27,7 +30,7 @@ public: /** * Initialise the spellchecker with the given buffer params and language. */ - PSpell(BufferParams const & params, string const & lang); + PSpell(BufferParams const & params, std::string const & lang); virtual ~PSpell(); @@ -46,22 +49,22 @@ public: /// accept the given word temporarily virtual void accept(WordLangTuple const &); - /// return the next near miss after a MISSED result - virtual string const nextMiss(); + /// return the next near miss after a SUGGESTED_WORDS result + virtual std::string const nextMiss(); /// give an error message on messy exit - virtual string const error(); + virtual std::string const error(); private: /// add a manager of the given language - void addManager(string const & lang); + void addManager(std::string const & lang); struct Manager { PspellManager * manager; PspellConfig * config; }; - typedef std::map Managers; + typedef std::map Managers; /// the managers Managers managers_; @@ -72,4 +75,4 @@ private: PspellCanHaveError * spell_error_object; }; -#endif // PSPELL_H +#endif // LYX_PSPELL_H