]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.h
fix reading the author field.
[lyx.git] / src / ispell.h
index d8a3c9ca138951a08b45ef8fe2b1d53d153ae287..ae14e337d4916b988380f6814d114919e49956c2 100644 (file)
@@ -29,7 +29,7 @@ class ForkedProcess;
 /// i/a spell process-based spellchecker
 class ISpell : public SpellBase {
 public:
-       ISpell(BufferParams const & params, string const & lang);
+       ISpell(BufferParams const & params, std::string const & lang);
 
        ~ISpell();
 
@@ -46,10 +46,10 @@ public:
        virtual void accept(WordLangTuple const & word);
 
        /// 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:
        /// read some data. Returns true on an error. Sets err_read
@@ -72,7 +72,7 @@ private:
        char buf[BUFSIZ];
 
        /// spell error
-       string error_;
+       std::string error_;
 
        boost::scoped_ptr<lyx::support::ForkedProcess> child_;