forked from qt-creator/qt-creator
ProjectExplorer: Remove unused RunWorker functions
Change-Id: If5d7368cf46b789c80162271cb6e71ebaae1548e Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user