From 5a1400c5f026feeeabbceba15e6fdfc0358955c2 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 16 Mar 2015 11:49:31 +0100 Subject: [PATCH] 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 --- src/plugins/valgrind/valgrindplugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/valgrind/valgrindplugin.cpp b/src/plugins/valgrind/valgrindplugin.cpp index a3bf8b2176b..654dcfd7b59 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(); };