]> git.lyx.org Git - lyx.git/blobdiff - src/pspell.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / pspell.h
index 4de75c2320f470b5f7e1d015795a36a2905a3d00..d645aacad3b98c33b7bbc49fae748b92758f1da9 100644 (file)
@@ -30,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();
 
@@ -49,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<string, struct Manager> Managers;
+       typedef std::map<std::string, struct Manager> Managers;
 
        /// the managers
        Managers managers_;
@@ -75,4 +75,4 @@ private:
        PspellCanHaveError * spell_error_object;
 };
 
-#endif // PSPELL_H
+#endif // LYX_PSPELL_H