]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
more cursor dispatch
[lyx.git] / src / ispell.C
index 2dae4f04bde1cea5f054c3a47140e51c7f275521..8cfdddf97f8bf47aaa44e2685f6dc95b855de910 100644 (file)
 #endif
 #include <sys/time.h>
 
-using namespace lyx::support;
-
 #ifndef CXX_GLOBAL_CSTD
 using std::strcpy;
 using std::strlen;
 using std::strpbrk;
-using std::strstr;
 #endif
 
+using std::auto_ptr;
 using std::endl;
 using std::max;
+using std::string;
+
 
 namespace {
 
@@ -51,8 +51,8 @@ public:
                     int * in, int * out, int * err)
                : params(p), lang(l), pipein(in), pipeout(out), pipeerr(err) {}
        ///
-       virtual lyx::support::ForkedProcess * clone() const {
-               return new LaunchIspell(*this);
+       virtual auto_ptr<lyx::support::ForkedProcess> clone() const {
+               return auto_ptr<lyx::support::ForkedProcess>(new LaunchIspell(*this));
        }
        ///
        int start();