diff -r b72c6db6890b -r 5dc02b23752f src/corelib/io/qprocess.cpp --- a/src/corelib/io/qprocess.cpp Wed Jun 23 19:07:03 2010 +0300 +++ b/src/corelib/io/qprocess.cpp Tue Jul 06 15:10:48 2010 +0300 @@ -88,7 +88,7 @@ #include "qprocess_p.h" #include -#include +#include #include #include #include @@ -1649,7 +1649,7 @@ if (d->processState == QProcess::NotRunning) return false; if (d->processState == QProcess::Starting) { - QTime stopWatch; + QElapsedTimer stopWatch; stopWatch.start(); bool started = waitForStarted(msecs); if (!started) @@ -1686,7 +1686,7 @@ if (d->processState == QProcess::NotRunning) return false; if (d->processState == QProcess::Starting) { - QTime stopWatch; + QElapsedTimer stopWatch; stopWatch.start(); bool started = waitForStarted(msecs); if (!started) @@ -2022,7 +2022,7 @@ \note Terminating running processes from other processes will typically cause a panic in Symbian due to platform security. - \sa \l {Symbian Platform Security Requirements} + \sa {Symbian Platform Security Requirements} \sa kill() */ void QProcess::terminate() @@ -2040,7 +2040,7 @@ On Symbian, this function requires platform security capability \c PowerMgmt. If absent, the process will panic with KERN-EXEC 46. - \sa \l {Symbian Platform Security Requirements} + \sa {Symbian Platform Security Requirements} \sa terminate() */ void QProcess::kill()