From 36b835ff0ac1f6ab7b2ae8aab789352a9e297c21 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 16 May 2018 15:42:03 +0200 Subject: Finish merging Runnable and StandardRunnable As all Runnables are known to be StandardRunnables, this here essentially replaces all .is by 'true'. .as by no-op, and fixes the fallout. Change-Id: I1632f8e164fa0a9dff063df47a9e191fdf7bbb2e Reviewed-by: Tobias Hunger Reviewed-by: Christian Kandeler --- src/plugins/debugger/qml/qmlengine.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/plugins/debugger/qml/qmlengine.cpp') diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index b428a88ea3..0d607fc8ec 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -48,7 +48,6 @@ #include #include -#include #include #include @@ -526,7 +525,7 @@ void QmlEngine::runEngine() void QmlEngine::startApplicationLauncher() { if (!d->applicationLauncher.isRunning()) { - StandardRunnable runnable = runParameters().inferior; + const Runnable runnable = runParameters().inferior; runTool()->appendMessage(tr("Starting %1 %2").arg( QDir::toNativeSeparators(runnable.executable), runnable.commandLineArguments), -- cgit v1.2.1