From 4c86cd6f5cb74d00c020748ef936572be6a41f7c Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 5 Dec 2016 15:49:50 +0100 Subject: [PATCH] Qnx: Fix inverted logic Change-Id: Ie92720a7bf6730f0d767ab69da5672074d870449 Reviewed-by: Tim Jenssen Reviewed-by: Filippo Cucchetto Reviewed-by: Tobias Hunger --- src/plugins/qnx/qnxdebugsupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qnx/qnxdebugsupport.cpp b/src/plugins/qnx/qnxdebugsupport.cpp index bb8cd71bc38..05e53255148 100644 --- a/src/plugins/qnx/qnxdebugsupport.cpp +++ b/src/plugins/qnx/qnxdebugsupport.cpp @@ -132,7 +132,7 @@ void QnxDebugSupport::handleRemoteProcessStarted() void QnxDebugSupport::handleRemoteProcessFinished(bool success) { - if (m_runControl || state() == Inactive) + if (!m_runControl || state() == Inactive) return; if (state() == Running) {