ProjectExplorer: Remove unused RunWorker functions

Change-Id: If5d7368cf46b789c80162271cb6e71ebaae1548e
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2017-07-11 18:13:17 +02:00
parent 5a1a20f2ee
commit 5868c1e53b
2 changed files with 0 additions and 8 deletions

View File

@@ -1525,11 +1525,6 @@ void RunWorker::setStopTimeout(int ms)
d->stopWatchdogInterval = 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) void RunWorker::recordData(const QString &channel, const QVariant &data)
{ {
d->data[channel] = data; d->data[channel] = data;

View File

@@ -340,8 +340,6 @@ public:
void setStartTimeout(int ms); void setStartTimeout(int ms);
void setStopTimeout(int ms); void setStopTimeout(int ms);
void reportData(int channel, const QVariant &data);
void recordData(const QString &channel, const QVariant &data); void recordData(const QString &channel, const QVariant &data);
QVariant recordedData(const QString &channel) const; QVariant recordedData(const QString &channel) const;
@@ -366,7 +364,6 @@ public:
static QString userMessageForProcessError(QProcess::ProcessError, const QString &programName); static QString userMessageForProcessError(QProcess::ProcessError, const QString &programName);
signals: signals:
void dataReported(int channel, const QVariant &data);
void started(); void started();
void stopped(); void stopped();