summaryrefslogtreecommitdiff
path: root/src/plugins/winrt/winrtrunnerhelper.cpp
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-10-31 13:38:51 +0100
committerOliver Wolff <oliver.wolff@qt.io>2018-11-01 07:02:41 +0000
commit181b935c69446cb22417a2651469010779ce25bb (patch)
treeab613fbd90f9d48fb0db80901ab6c1a7c1b1d021 /src/plugins/winrt/winrtrunnerhelper.cpp
parente0b0c307486d56e2cb3152bb7fade9a06ddf4dd3 (diff)
downloadqt-creator-181b935c69446cb22417a2651469010779ce25bb.tar.gz
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 <maurice.kalinowski@qt.io>
Diffstat (limited to 'src/plugins/winrt/winrtrunnerhelper.cpp')
-rw-r--r--src/plugins/winrt/winrtrunnerhelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/winrt/winrtrunnerhelper.cpp b/src/plugins/winrt/winrtrunnerhelper.cpp
index 47083a168f..1ddc49c005 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);