aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/processcommandexecutor.h
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2018-08-02 18:28:51 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-08-20 13:38:47 +0000
commit36c67caee1a65b601446ac9c67d5a3dae03ee1f3 (patch)
treefc7cc067022ee70acc0940af7fd605575f2278eb /src/lib/corelib/buildgraph/processcommandexecutor.h
parent677ead12a2bb7da5d4de6d3b78e8dd95ba13923c (diff)
corelib: Apply modernize-use-override
Add overrides to function, except for destructors. Change-Id: I1a1337b01dfef81b74ba56c5f00bf4d4cfc10935 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/processcommandexecutor.h')
-rw-r--r--src/lib/corelib/buildgraph/processcommandexecutor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/corelib/buildgraph/processcommandexecutor.h b/src/lib/corelib/buildgraph/processcommandexecutor.h
index bebe3a5e2..67eb9f746 100644
--- a/src/lib/corelib/buildgraph/processcommandexecutor.h
+++ b/src/lib/corelib/buildgraph/processcommandexecutor.h
@@ -69,10 +69,10 @@ private:
void onProcessError();
void onProcessFinished();
- void doSetup();
- void doReportCommandDescription(const QString &productName);
- void doStart();
- void cancel();
+ void doSetup() override;
+ void doReportCommandDescription(const QString &productName) override;
+ void doStart() override;
+ void cancel() override;
void startProcessCommand();
QString filterProcessOutput(const QByteArray &output, const QString &filterFunctionSource);