summaryrefslogtreecommitdiff
path: root/src/plugins/valgrind/callgrindtool.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-08-07 19:47:30 +0200
committerhjk <hjk121@nokiamail.com>2013-08-08 17:41:39 +0200
commite94183ca2feed8e68e8d1430be2d24632d4a731c (patch)
tree2ccab4191bf3acbdef6f5cbea4596a76f3990134 /src/plugins/valgrind/callgrindtool.cpp
parent256509541bef7643831859ec4449089a46510af4 (diff)
downloadqt-creator-e94183ca2feed8e68e8d1430be2d24632d4a731c.tar.gz
Analyzer: Introduce AnalzyerAction
This wraps the menu related aspects of an IAnalyzerTool. Change-Id: I065cb5f269a40af2137f434a7cdf915bd9a76839 Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
Diffstat (limited to 'src/plugins/valgrind/callgrindtool.cpp')
-rw-r--r--src/plugins/valgrind/callgrindtool.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/plugins/valgrind/callgrindtool.cpp b/src/plugins/valgrind/callgrindtool.cpp
index e3459747a4..02b1ce74f1 100644
--- a/src/plugins/valgrind/callgrindtool.cpp
+++ b/src/plugins/valgrind/callgrindtool.cpp
@@ -516,27 +516,11 @@ CallgrindTool::~CallgrindTool()
delete d;
}
-Core::Id CallgrindTool::id() const
-{
- return Core::Id("Callgrind");
-}
-
RunMode CallgrindTool::runMode() const
{
return CallgrindRunMode;
}
-QString CallgrindTool::displayName() const
-{
- return tr("Valgrind Function Profiler");
-}
-
-QString CallgrindTool::description() const
-{
- return tr("Valgrind Profile uses the \"callgrind\" tool to "
- "record function calls when a program runs.");
-}
-
IAnalyzerTool::ToolMode CallgrindTool::toolMode() const
{
return ReleaseMode;