ConsoleProcess: Uniform the common interface of QtcProcess

This is a preliminary step before merging ConsoleProcess
into QtcProcess.

Remove unused stubStarted() and stupStopped() signals.

Change-Id: I3b508fa9fb0ff243355f91fd79bc40f8db1c9a82
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-01-20 11:31:45 +01:00
parent 2e3d32cc1b
commit 2285018c6c
2 changed files with 0 additions and 6 deletions

View File

@@ -752,7 +752,6 @@ void ConsoleProcess::stubServerShutdown()
void ConsoleProcess::stubConnectionAvailable()
{
d->m_stubConnected = true;
emit stubStarted();
if (d->m_stubConnectTimer) {
delete d->m_stubConnectTimer;
@@ -865,7 +864,6 @@ void ConsoleProcess::stubExited()
if (d->m_appPid)
finish(-1, QProcess::CrashExit);
#endif
emit stubStopped();
}
void ConsoleProcess::detachStub()

View File

@@ -119,10 +119,6 @@ signals:
void started();
void finished();
// These reflect the state of the console+stub
void stubStarted();
void stubStopped();
private:
void stubConnectionAvailable();
void readStubOutput();