diff options
author | hjk <[email protected]> | 2016-05-13 11:27:51 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2016-05-20 10:52:26 +0000 |
commit | 67f9a26208df912425507a4d2c4733993e25b2d9 (patch) | |
tree | be9af3e10b0d20f14642ec1867646e9c7dc55e20 /src/plugins/qmlprofiler/qmlprofilerruncontrol.h | |
parent | 6512227302732594d700c91588437fb94f331f83 (diff) |
Merge AnalyzerRunControl::logMessage and RunControl::appendMessage
The tools' ability to hook into processing of the output is
retained by making the function virtual.
Also remove the unusual overload of the RunControl::appendMessage
slot and the signal of the same name by renaming the signal.
Change-Id: If3c3cc2dd9c933169dc30b16e3165c9b3cf1440e
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerruncontrol.h')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerruncontrol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerruncontrol.h b/src/plugins/qmlprofiler/qmlprofilerruncontrol.h index c859ab3991e..bdd42ed3b79 100644 --- a/src/plugins/qmlprofiler/qmlprofilerruncontrol.h +++ b/src/plugins/qmlprofiler/qmlprofilerruncontrol.h @@ -51,7 +51,7 @@ public: bool isRunning() const override; void cancelProcess(); void notifyRemoteFinished() override; - void logApplicationMessage(const QString &msg, Utils::OutputFormat format) override; + void appendMessage(const QString &msg, Utils::OutputFormat format) override; signals: void processRunning(Utils::Port port); |