]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
more cursor dispatch
[lyx.git] / src / ispell.C
index acf8c6a404397e65ed409ae98a4c27ef1c8f97c4..8cfdddf97f8bf47aaa44e2685f6dc95b855de910 100644 (file)
@@ -36,8 +36,10 @@ using std::strlen;
 using std::strpbrk;
 #endif
 
+using std::auto_ptr;
 using std::endl;
 using std::max;
+using std::string;
 
 
 namespace {
@@ -49,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();