diff options
author | hjk <[email protected]> | 2013-07-30 11:55:28 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2013-08-01 10:32:51 +0200 |
commit | 1fb755bb42c4a323716c9d6351e502609d1d993c (patch) | |
tree | 8f86064a92734bc687ede362f1cf07b97db984f3 /src/plugins/valgrind/callgrindtool.h | |
parent | 2ba88d1c18bb903627a4a03692eb70f31c313a6f (diff) |
Analyzer: Remove intermediate "ValgrindTool" inheritance level
It's an empty shell nowadays.
Change-Id: I661735eccf035b58cc405905a58bd74e787e6abc
Reviewed-by: Aurindam Jana <[email protected]>
Diffstat (limited to 'src/plugins/valgrind/callgrindtool.h')
-rw-r--r-- | src/plugins/valgrind/callgrindtool.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/valgrind/callgrindtool.h b/src/plugins/valgrind/callgrindtool.h index 9c8c2cefc29..b913bbb3c94 100644 --- a/src/plugins/valgrind/callgrindtool.h +++ b/src/plugins/valgrind/callgrindtool.h @@ -30,14 +30,14 @@ #ifndef CALLGRINDTOOL_H #define CALLGRINDTOOL_H -#include "valgrindtool.h" +#include <analyzerbase/ianalyzertool.h> namespace Valgrind { namespace Internal { class CallgrindToolPrivate; -class CallgrindTool : public ValgrindTool +class CallgrindTool : public Analyzer::IAnalyzerTool { Q_OBJECT @@ -50,6 +50,7 @@ public: QString displayName() const; QString description() const; ToolMode toolMode() const; + bool canRun(ProjectExplorer::RunConfiguration *, ProjectExplorer::RunMode mode) const; void extensionsInitialized(); |