summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-01-29 09:29:13 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2015-02-02 13:33:21 +0000
commit0838e9eac20d6db5f165a7864e96f8c82bd1edfb (patch)
tree0c7db053283875cab40660d2da5970687cfaba2e /src/libs
parent377024031981694beefdbc23cdf807da486cdf18 (diff)
Fix use --startclient arguments
So far the arguments to --startclient have been ignored. Change-Id: Ib76b061381a9320e6e4e9e2e970132c2f614aca7 GPush-Base: 92da4093e32040cb7cd7ed5587de78262d825e65 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/installer/remoteclient_p.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/installer/remoteclient_p.h b/src/libs/installer/remoteclient_p.h
index 103b60d08..9f337c555 100644
--- a/src/libs/installer/remoteclient_p.h
+++ b/src/libs/installer/remoteclient_p.h
@@ -89,11 +89,10 @@ public:
void init(quint16 port, const QString &key, Protocol::Mode mode, Protocol::StartAs startAs)
{
+ m_key = key;
+ m_port = port;
m_mode = mode;
if (mode == Protocol::Mode::Production) {
- m_key = key;
- m_port = port;
- m_mode = mode;
m_startServerAs = startAs;
m_serverCommand = QCoreApplication::applicationFilePath();
m_serverArguments = QStringList() << QLatin1String("--startserver")