aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind/callgrind/callgrindrunner.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-02-02 15:50:41 +0100
committerhjk <hjk@theqtcompany.com>2016-02-02 15:41:35 +0000
commite7132f67140538214d7200b6bee89ad87705345b (patch)
tree6aebbdf88bfa697b2a9240df06818fda10259dcd /src/plugins/valgrind/callgrind/callgrindrunner.h
parent9be9fcc7fccefe673e0a1bd7e6d3b6389aeebdd6 (diff)
Valgrind: Remove unneeded 'slot' markup in CallgrindRunner
Change-Id: I1f4b6855cc3fc3a418e26f4900c3fd439cfa6f36 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/valgrind/callgrind/callgrindrunner.h')
-rw-r--r--src/plugins/valgrind/callgrind/callgrindrunner.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/plugins/valgrind/callgrind/callgrindrunner.h b/src/plugins/valgrind/callgrind/callgrindrunner.h
index a0c70a1f53..b8299c5485 100644
--- a/src/plugins/valgrind/callgrind/callgrindrunner.h
+++ b/src/plugins/valgrind/callgrind/callgrindrunner.h
@@ -53,21 +53,16 @@ public:
signals:
void statusMessage(const QString &message);
-private slots:
- void localParseDataAvailable(const QString &file);
-
- void controllerFinished(Valgrind::Callgrind::CallgrindController::Option);
-
+private:
void processFinished(int, QProcess::ExitStatus);
+ QString tool() const;
-private:
+ void localParseDataAvailable(const QString &file);
+ void controllerFinished(Valgrind::Callgrind::CallgrindController::Option);
void triggerParse();
- QString tool() const;
-
CallgrindController *m_controller;
Parser *m_parser;
-
bool m_paused;
};