1.8.67 Bugfixes
authorinsilmaril
Mon, 19 Feb 2007 12:01:52 +0000
changeset 42969a4c16bd85b
parent 428 9ae68208e2ff
child 430 f001beefdec2
1.8.67 Bugfixes
process.cpp
process.h
     1.1 --- a/process.cpp	Mon Feb 19 12:01:52 2007 +0000
     1.2 +++ b/process.cpp	Mon Feb 19 12:01:52 2007 +0000
     1.3 @@ -22,15 +22,6 @@
     1.4  	stdOut="";
     1.5  }
     1.6  
     1.7 -void Process::waitFinished()
     1.8 -{
     1.9 -	while (state()==QProcess::Running)
    1.10 -	{
    1.11 -		// TODO use some kind of sleep here...
    1.12 -		system ("sleep 1");
    1.13 -	}
    1.14 -}
    1.15 -
    1.16  void Process::readProcErrout()
    1.17  {
    1.18  	errOut+=readAllStandardError();
     2.1 --- a/process.h	Mon Feb 19 12:01:52 2007 +0000
     2.2 +++ b/process.h	Mon Feb 19 12:01:52 2007 +0000
     2.3 @@ -14,7 +14,6 @@
     2.4      Process ();
     2.5  	~Process ();
     2.6  	void clear();
     2.7 -	void waitFinished();
     2.8  	QString getErrout();
     2.9  	QString getStdout();
    2.10