summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2015-03-16 11:49:31 +0100
committerhjk <hjk@theqtcompany.com>2015-03-16 10:51:36 +0000
commit5a1400c5f026feeeabbceba15e6fdfc0358955c2 (patch)
treeda17f13cfb3659886964753bfd65c9891fc5f667
parentc874e1dd73c2f152a5ff0b593d7f0c49d2f48a09 (diff)
downloadqt-creator-5a1400c5f026feeeabbceba15e6fdfc0358955c2.tar.gz
Valgrind: capitalize tool names in messages
That is the way Valgrind.org writes them and the way we write them in the docs. Change-Id: Ib3775cb0a10e6946221d8aa842111d069231d36c Reviewed-by: hjk <hjk@theqtcompany.com>
-rw-r--r--src/plugins/valgrind/valgrindplugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/valgrind/valgrindplugin.cpp b/src/plugins/valgrind/valgrindplugin.cpp
index a3bf8b2176..654dcfd7b5 100644
--- a/src/plugins/valgrind/valgrindplugin.cpp
+++ b/src/plugins/valgrind/valgrindplugin.cpp
@@ -115,14 +115,14 @@ bool ValgrindPlugin::initialize(const QStringList &, QString *)
AnalyzerAction *action = 0;
QString callgrindToolTip = tr("Valgrind Function Profile uses the "
- "\"callgrind\" tool to record function calls when a program runs.");
+ "Callgrind tool to record function calls when a program runs.");
QString memcheckToolTip = tr("Valgrind Analyze Memory uses the "
- "\"memcheck\" tool to find memory leaks.");
+ "Memcheck tool to find memory leaks.");
QString memcheckWithGdbToolTip = tr(
- "Valgrind Analyze Memory with GDB uses the \"memcheck\" tool to find memory leaks.\n"
- "When a problem is detected, the application is interrupted and can be debugged");
+ "Valgrind Analyze Memory with GDB uses the Memcheck tool to find memory leaks.\n"
+ "When a problem is detected, the application is interrupted and can be debugged.");
MemcheckTool *mcTool = m_memcheckTool;
auto mcWidgetCreator = [mcTool] { return mcTool->createWidgets(); };