forked from qt-creator/qt-creator
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:
@@ -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(); };
|
||||
|
Reference in New Issue
Block a user