Valgrind: Add a ValgrindRunner member to the ValgrindToolRunner base

... instead of having one in each derived class.

Change-Id: Icd121ce46b1d161bd2d59eaeaad8363528dc3c23
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2017-06-21 09:15:33 +02:00
parent ecf308ee43
commit fa43f5e314
6 changed files with 27 additions and 44 deletions

View File

@@ -55,10 +55,10 @@ signals:
protected:
virtual QString progressTitle() const = 0;
virtual QStringList toolArguments() const = 0;
virtual Valgrind::ValgrindRunner *runner() = 0;
ValgrindBaseSettings *m_settings = 0;
QFutureInterface<void> m_progress;
ValgrindRunner m_runner;
private:
void handleProgressCanceled();