QProcess: remove outdated references to QProcessManager

No such thing exists since Qt 5.5.

Change-Id: Ib3f83dbb1087db1880ef37438669430e0f076301
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de>
This commit is contained in:
Alex Trotsenko 2020-12-09 13:06:30 +02:00 committed by Oswald Buddenhagen
parent 472c8290af
commit 5e72976237
2 changed files with 0 additions and 3 deletions

View File

@ -1142,7 +1142,6 @@ bool QProcessPrivate::_q_startupNotification()
q->setProcessState(QProcess::NotRunning);
setErrorAndEmit(QProcess::FailedToStart, errorMessage);
#ifdef Q_OS_UNIX
// make sure the process manager removes this entry
waitForDeadChild();
findExitCode();
#endif
@ -1197,7 +1196,6 @@ QProcess::~QProcess()
waitForFinished();
}
#ifdef Q_OS_UNIX
// make sure the process manager removes this entry
d->findExitCode();
#endif
d->cleanup();

View File

@ -284,7 +284,6 @@ private:
Q_PRIVATE_SLOT(d_func(), bool _q_canWrite())
Q_PRIVATE_SLOT(d_func(), bool _q_startupNotification())
Q_PRIVATE_SLOT(d_func(), void _q_processDied())
friend class QProcessManager;
};
#endif // QT_CONFIG(process)