Qnx: Fix inverted logic

Change-Id: Ie92720a7bf6730f0d767ab69da5672074d870449
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Reviewed-by: Filippo Cucchetto <filippocucchetto@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Tobias Hunger
2016-12-05 15:49:50 +01:00
parent de0cf4e92c
commit 4c86cd6f5c

View File

@@ -132,7 +132,7 @@ void QnxDebugSupport::handleRemoteProcessStarted()
void QnxDebugSupport::handleRemoteProcessFinished(bool success) void QnxDebugSupport::handleRemoteProcessFinished(bool success)
{ {
if (m_runControl || state() == Inactive) if (!m_runControl || state() == Inactive)
return; return;
if (state() == Running) { if (state() == Running) {