Remove unused signals

Change-Id: I2b7969a91d5dbb0b455e906eab49b195133cc279
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2020-11-17 16:50:57 +01:00
parent 12f7df6a85
commit ad375435fb
2 changed files with 0 additions and 7 deletions

View File

@@ -61,8 +61,6 @@ Slog2InfoRunner::Slog2InfoRunner(RunControl *runControl)
connect(m_logProcess, &DeviceProcess::readyReadStandardOutput, this, &Slog2InfoRunner::readLogStandardOutput);
connect(m_logProcess, &DeviceProcess::readyReadStandardError, this, &Slog2InfoRunner::readLogStandardError);
connect(m_logProcess, &DeviceProcess::error, this, &Slog2InfoRunner::handleLogError);
connect(m_logProcess, &DeviceProcess::started, this, &Slog2InfoRunner::started);
connect(m_logProcess, &DeviceProcess::finished, this, &Slog2InfoRunner::finished);
}
void Slog2InfoRunner::printMissingWarning()

View File

@@ -50,11 +50,6 @@ public:
bool commandFound() const;
signals:
void commandMissing();
void started();
void finished();
private:
void handleTestProcessCompleted();
void launchSlog2Info();