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>
This commit is contained in:
Leena Miettinen
2015-03-16 11:49:31 +01:00
committed by hjk
parent c874e1dd73
commit 5a1400c5f0

View File

@@ -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(); };