From f0594a0d61fba4ce69526c8d5eb76f0ed30e3690 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Fri, 25 Apr 2014 15:09:22 +0200 Subject: [PATCH] Valgrind: Fix display name for analyzing remote external application. The current one just adds the string "(Remote)", which is pretty much guaranteed to trick users into thinking it's the one they must choose when running remote valgrind. Instead, we must make it clear that it's for analyzing something other than the current project. Unfortunately, the string still contains the word "remote" because for some reason, we don't offer valgrind for local external applications. Change-Id: I27296851b747437e96dc22dbaf54eaf10dcf4be5 Reviewed-by: hjk --- src/plugins/valgrind/valgrindplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/valgrind/valgrindplugin.cpp b/src/plugins/valgrind/valgrindplugin.cpp index d13aa27cb81..630eb0931b8 100644 --- a/src/plugins/valgrind/valgrindplugin.cpp +++ b/src/plugins/valgrind/valgrindplugin.cpp @@ -150,7 +150,7 @@ bool ValgrindPlugin::initialize(const QStringList &, QString *) action = new ValgrindAction(this); action->setId("Memcheck.Remote"); action->setTool(m_memcheckTool); - action->setText(tr("Valgrind Memory Analyzer (Remote)")); + action->setText(tr("Valgrind Memory Analyzer (External Remote Application)")); action->setToolTip(memcheckToolTip); action->setMenuGroup(Constants::G_ANALYZER_REMOTE_TOOLS); action->setStartMode(StartRemote); @@ -159,7 +159,7 @@ bool ValgrindPlugin::initialize(const QStringList &, QString *) action = new ValgrindAction(this); action->setId("Callgrind.Remote"); action->setTool(m_callgrindTool); - action->setText(tr("Valgrind Function Profiler (Remote)")); + action->setText(tr("Valgrind Function Profiler (External Remote Application)")); action->setToolTip(callgrindToolTip); action->setMenuGroup(Constants::G_ANALYZER_REMOTE_TOOLS); action->setStartMode(StartRemote);