]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.h
Updates from Bennett and myself.
[lyx.git] / src / ispell.h
index 44efb4aa14924dcbb44fb0b763887bee53e3da2e..0fe77a15bc261f46b60e92dfdb897675b36b5d71 100644 (file)
 
 #include <cstdio>
 
-class BufferParams;
 namespace lyx {
-namespace support {
-class ForkedProcess;
-}
-}
+
+class BufferParams;
+
+namespace support { class ForkedProcess; }
 
 /// i/a spell process-based spellchecker
 class ISpell : public SpellBase {
@@ -51,7 +50,7 @@ public:
        virtual std::string const nextMiss();
 
        /// give an error message on messy exit
-       virtual lyx::docstring const error();
+       virtual docstring const error();
 
 private:
        /// read some data. Returns true on an error. Sets err_read
@@ -74,9 +73,9 @@ private:
        char buf[BUFSIZ];
 
        /// spell error
-       lyx::docstring error_;
+       docstring error_;
 
-       boost::scoped_ptr<lyx::support::ForkedProcess> child_;
+       boost::scoped_ptr<support::ForkedProcess> child_;
 
        // vileness below ... please FIXME
        /// str ???
@@ -86,4 +85,6 @@ private:
 
 };
 
+} // namespace lyx
+
 #endif // ISPELL_H