diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index 75df5b6ff6c..8fb4f03c6d6 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -1525,11 +1525,6 @@ void RunWorker::setStopTimeout(int ms) d->stopWatchdogInterval = ms; } -void RunWorker::reportData(int channel, const QVariant &data) -{ - emit dataReported(channel, data); -} - void RunWorker::recordData(const QString &channel, const QVariant &data) { d->data[channel] = data; diff --git a/src/plugins/projectexplorer/runconfiguration.h b/src/plugins/projectexplorer/runconfiguration.h index b7a69ca2ebb..66556a35ce9 100644 --- a/src/plugins/projectexplorer/runconfiguration.h +++ b/src/plugins/projectexplorer/runconfiguration.h @@ -340,8 +340,6 @@ public: void setStartTimeout(int ms); void setStopTimeout(int ms); - void reportData(int channel, const QVariant &data); - void recordData(const QString &channel, const QVariant &data); QVariant recordedData(const QString &channel) const; @@ -366,7 +364,6 @@ public: static QString userMessageForProcessError(QProcess::ProcessError, const QString &programName); signals: - void dataReported(int channel, const QVariant &data); void started(); void stopped();