summaryrefslogtreecommitdiff
path: root/src/plugins/valgrind/valgrindplugin.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2013-10-09 17:25:21 +0200
committerhjk <hjk121@nokiamail.com>2013-10-10 15:29:54 +0200
commit2f7f1d904c33782e5a4b7604628b78c5a05498ee (patch)
treef57e3f491bb3044a1441f3ae68fcd44a18804d62 /src/plugins/valgrind/valgrindplugin.cpp
parent3bf7578beb5e035d65194629fad3be76e48e28cd (diff)
downloadqt-creator-2f7f1d904c33782e5a4b7604628b78c5a05498ee.tar.gz
Valgrind: fix UI text capitalization and punctuation
Removed the asterisks from messages. Change-Id: I1c8e95b6d6f77921f2908c4587af5ebfde5e86af Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/valgrind/valgrindplugin.cpp')
-rw-r--r--src/plugins/valgrind/valgrindplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/valgrind/valgrindplugin.cpp b/src/plugins/valgrind/valgrindplugin.cpp
index aaa566d3c9..f7392831e3 100644
--- a/src/plugins/valgrind/valgrindplugin.cpp
+++ b/src/plugins/valgrind/valgrindplugin.cpp
@@ -111,7 +111,7 @@ bool ValgrindPlugin::initialize(const QStringList &, QString *)
"\"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.");
if (!Utils::HostOsInfo::isWindowsHost()) {
action = new ValgrindAction;
@@ -173,7 +173,7 @@ void ValgrindPlugin::extensionsInitialized()
Context analyzerContext = Context(Analyzer::Constants::C_ANALYZEMODE);
editorContextMenu->addSeparator(analyzerContext);
- QAction *action = new QAction(tr("Profile Costs of this Function and its Callees"), this);
+ QAction *action = new QAction(tr("Profile Costs of This Function and Its Callees"), this);
action->setIcon(QIcon(QLatin1String(Analyzer::Constants::ANALYZER_CONTROL_START_ICON)));
connect(action, SIGNAL(triggered()), m_callgrindTool, SLOT(handleShowCostsOfFunction()));
Command *cmd = ActionManager::registerAction(action, "Analyzer.Callgrind.ShowCostsOfFunction",