forked from qt-creator/qt-creator
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user