aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind/callgrindengine.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-03-02 13:23:30 +0100
committerhjk <hjk@theqtcompany.com>2016-03-02 13:14:14 +0000
commit9ff81d5c68239ac97bac102efa9913bb5931093b (patch)
tree0ef68886b18823785b518b4d425d8fc31028b01e /src/plugins/valgrind/callgrindengine.cpp
parent7a5226aa47a54e2ed82fc9308d47fe7cb0457069 (diff)
Debugger: Make Perspective status label global
After some discussion we agreed that the contents is ephemeral and does not need to survive perspective switching. Change-Id: I41de6a8f9478e4bd229c8b204ef7a3fa0a344b75 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/valgrind/callgrindengine.cpp')
-rw-r--r--src/plugins/valgrind/callgrindengine.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/plugins/valgrind/callgrindengine.cpp b/src/plugins/valgrind/callgrindengine.cpp
index d1f450fe9f..b3a9a183c0 100644
--- a/src/plugins/valgrind/callgrindengine.cpp
+++ b/src/plugins/valgrind/callgrindengine.cpp
@@ -48,12 +48,7 @@ CallgrindRunControl::CallgrindRunControl(ProjectExplorer::RunConfiguration *runC
connect(m_runner.parser(), &Callgrind::Parser::parserDataReady,
this, &CallgrindRunControl::slotFinished);
connect(&m_runner, &Callgrind::CallgrindRunner::statusMessage,
- this, &CallgrindRunControl::showStatusMessage);
-}
-
-void CallgrindRunControl::showStatusMessage(const QString &msg)
-{
- AnalyzerManager::showPermanentStatusMessage(CallgrindPerspectiveId, msg);
+ this, &AnalyzerManager::showPermanentStatusMessage);
}
QStringList CallgrindRunControl::toolArguments() const