# HG changeset patch
# User insilmaril
# Date 1171886512 0
# Node ID 69a4c16bd85b6703664037b994e9b381946a7e7a
# Parent  9ae68208e2fff104489ea8bef260905008c24056
1.8.67 Bugfixes

diff -r 9ae68208e2ff -r 69a4c16bd85b process.cpp
--- a/process.cpp	Mon Feb 19 12:01:52 2007 +0000
+++ b/process.cpp	Mon Feb 19 12:01:52 2007 +0000
@@ -22,15 +22,6 @@
 	stdOut="";
 }
 
-void Process::waitFinished()
-{
-	while (state()==QProcess::Running)
-	{
-		// TODO use some kind of sleep here...
-		system ("sleep 1");
-	}
-}
-
 void Process::readProcErrout()
 {
 	errOut+=readAllStandardError();
diff -r 9ae68208e2ff -r 69a4c16bd85b process.h
--- a/process.h	Mon Feb 19 12:01:52 2007 +0000
+++ b/process.h	Mon Feb 19 12:01:52 2007 +0000
@@ -14,7 +14,6 @@
     Process ();
 	~Process ();
 	void clear();
-	void waitFinished();
 	QString getErrout();
 	QString getStdout();