diff options
author | hjk <[email protected]> | 2011-06-28 19:14:08 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2011-06-28 20:08:31 +0200 |
commit | 8d567174a90c0ba090989c751b2c0016a482df50 (patch) | |
tree | 8bd2b6cc5b86dc67a17ecaf316b20428536e4788 /src/plugins/valgrind/callgrindtool.cpp | |
parent | 5fcdc85b917414f84efb41bc24fac9db0119ea3f (diff) |
analyzer: more verbosity in the tool description
Change-Id: Ie259c78710c9e926f75595a7c22195efb7036532
Reviewed-on: http://codereview.qt.nokia.com/856
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/valgrind/callgrindtool.cpp')
-rw-r--r-- | src/plugins/valgrind/callgrindtool.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/plugins/valgrind/callgrindtool.cpp b/src/plugins/valgrind/callgrindtool.cpp index 6e52521124c..da9a37da70a 100644 --- a/src/plugins/valgrind/callgrindtool.cpp +++ b/src/plugins/valgrind/callgrindtool.cpp @@ -521,7 +521,13 @@ QString CallgrindTool::id() const QString CallgrindTool::displayName() const { - return tr("Profile"); + return tr("Valgrind Function Profile"); +} + +QString CallgrindTool::description() const +{ + return tr("Valgrind Profile uses the \"callgrind\" tool to " + "record function calls when a program runs."); } IAnalyzerTool::ToolMode CallgrindTool::mode() const |