]> git.lyx.org Git - lyx.git/blobdiff - src/aspell_local.h
Fix event loop to no longer eat CPU
[lyx.git] / src / aspell_local.h
index c256bc0fde8e9af64b0db256e9afc3f84576afd4..7bfcd01238ff00b5072886380a08c8175ca103a1 100644 (file)
@@ -1,10 +1,13 @@
+// -*- C++ -*-
 /**
  * \file aspell_local.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 <levon@movementarian.org>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYX_ASPELL_H
@@ -27,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();
 
@@ -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 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<string, struct Speller> Spellers;
+       typedef std::map<std::string, Speller> Spellers;
 
        /// the spellers
        Spellers spellers_;
@@ -72,4 +75,4 @@ private:
        AspellCanHaveError * spell_error_object;
 };
 
-#endif // ASPELL_H
+#endif // LYX_ASPELL_H