aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/processcommandexecutor.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2018-08-02 19:09:31 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-08-20 14:00:16 +0000
commitdd61fdb5017dcd9521ec389b0b40dad9a93bfd21 (patch)
tree489ad170aa60cb2089f7a7d6a2abca6c667c70aa /src/lib/corelib/buildgraph/processcommandexecutor.cpp
parent36c67caee1a65b601446ac9c67d5a3dae03ee1f3 (diff)
corelib: Apply modernize-use-nullptr
Use nullptr instead of 0. Change-Id: Id5b7933844730e244a2dcf3fcebf24f9f048047f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/processcommandexecutor.cpp')
-rw-r--r--src/lib/corelib/buildgraph/processcommandexecutor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/processcommandexecutor.cpp b/src/lib/corelib/buildgraph/processcommandexecutor.cpp
index cee45bcd0..0818e1200 100644
--- a/src/lib/corelib/buildgraph/processcommandexecutor.cpp
+++ b/src/lib/corelib/buildgraph/processcommandexecutor.cpp
@@ -197,7 +197,7 @@ void ProcessCommandExecutor::doStart()
void ProcessCommandExecutor::cancel()
{
// We don't want this command to be reported as failing, since we explicitly terminated it.
- disconnect(this, &ProcessCommandExecutor::reportProcessResult, 0, 0);
+ disconnect(this, &ProcessCommandExecutor::reportProcessResult, nullptr, nullptr);
m_process.cancel();
}