From 6c99fda503abae08f267f7339b4eadcd82bcb04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?La=C3=A9rcio=20de=20Sousa?= Date: Tue, 14 Mar 2017 10:04:02 -0300 Subject: [PATCH] QtSlaveLauncher: fix build for Qt < 5.7.0 --- lib/src/Ipc/QtSlaveLauncher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Ipc/QtSlaveLauncher.cpp b/lib/src/Ipc/QtSlaveLauncher.cpp index 252318af..87f7e361 100644 --- a/lib/src/Ipc/QtSlaveLauncher.cpp +++ b/lib/src/Ipc/QtSlaveLauncher.cpp @@ -65,7 +65,7 @@ void QtSlaveLauncher::start( const QStringList &arguments ) // forward stdout/stderr from slave to master m_process->setProcessChannelMode( QProcess::ForwardedChannels ); -#if QT_VERSION >= 0x050300 +#if QT_VERSION >= 0x050700 QObject::connect( m_process, static_cast(&QProcess::finished), m_process, &QProcess::deleteLater ); QObject::connect( m_process, static_cast(&QProcess::finished),