From 181b935c69446cb22417a2651469010779ce25bb Mon Sep 17 00:00:00 2001 From: Oliver Wolff Date: Wed, 31 Oct 2018 13:38:51 +0100 Subject: [PATCH] winrt: Remove --install from winrtrunner's default run arguments Passing --install to winrtrunner on run will cause the application to be reinstalled if it was installed before. This reinstallation will result in a clean sandbox so that all previously saved data will be lost. If the user needs described behavior he can use the existing "Uninstall package after application stops" aspect from the run configuration. Change-Id: I5b5975fb4646a625bfc86975770a1860effcfc06 Fixes: QTCREATORBUG-20208 Reviewed-by: Maurice Kalinowski --- src/plugins/winrt/winrtrunnerhelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/winrt/winrtrunnerhelper.cpp b/src/plugins/winrt/winrtrunnerhelper.cpp index 47083a168f0..1ddc49c005e 100644 --- a/src/plugins/winrt/winrtrunnerhelper.cpp +++ b/src/plugins/winrt/winrtrunnerhelper.cpp @@ -189,7 +189,7 @@ void WinRtRunnerHelper::startWinRtRunner(const RunConf &conf) } Q_FALLTHROUGH(); case Start: - QtcProcess::addArgs(&runnerArgs, QStringLiteral("--start --stop --install --wait 0")); + QtcProcess::addArgs(&runnerArgs, QStringLiteral("--start --stop --wait 0")); connectProcess = true; QTC_ASSERT(!m_process, m_process->deleteLater()); m_process = new QtcProcess(this);