From 26ca8f08490106c6ad322330f603fccfb7898fc3 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 18 Jun 2019 13:40:18 +0200 Subject: [PATCH] Utils: Fix default argument of ConsoleProcess::Start The default meta character mode needs to be "Abort" to retain previous behavior. Amends acfe45c4348. Change-Id: I1e0c752eddccb0d4821203573241308e56dfb2d3 Reviewed-by: Eike Ziller --- src/libs/utils/consoleprocess.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/consoleprocess.h b/src/libs/utils/consoleprocess.h index 82d0a5d8bb7..3dec9838c34 100644 --- a/src/libs/utils/consoleprocess.h +++ b/src/libs/utils/consoleprocess.h @@ -72,7 +72,7 @@ public: enum class MetaCharMode { Abort, Ignore }; bool start(const QString &program, const QString &args, - MetaCharMode metaCharMode = MetaCharMode::Ignore); + MetaCharMode metaCharMode = MetaCharMode::Abort); public slots: void stop();