summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/remoteclient_p.h
diff options
context:
space:
mode:
authorkh <karsten.heimrich@theqtcompany.com>2014-11-24 15:26:21 +0100
committerKarsten Heimrich <karsten.heimrich@theqtcompany.com>2014-11-24 16:52:17 +0100
commitb34f41a3bb527430f66f349bf612e6978a1c2338 (patch)
tree5ca5c2f506f7df8179738f67530b4ad12287d318 /src/libs/installer/remoteclient_p.h
parent44b12b11b2f86575f86b12c2e3172c4c038f4556 (diff)
Use written localhost address, adapt code.
Use the default address throughout the whole code. Instead of relying on the QHostAddress::SpecialAddress enum, use the full qualified and more descriptive address of localhost. Change-Id: I64b3459245682532f84306703e29ac276d4e468d Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/libs/installer/remoteclient_p.h')
-rw-r--r--src/libs/installer/remoteclient_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/remoteclient_p.h b/src/libs/installer/remoteclient_p.h
index f4e8e5ffb..515ce52c8 100644
--- a/src/libs/installer/remoteclient_p.h
+++ b/src/libs/installer/remoteclient_p.h
@@ -108,7 +108,7 @@ public:
RemoteClientPrivate(RemoteClient *parent)
: q_ptr(parent)
, m_mutex(QMutex::Recursive)
- , m_address(Protocol::DefaultHostAddress)
+ , m_address(QLatin1String(Protocol::DefaultHostAddress))
, m_port(Protocol::DefaultPort)
, m_startServerAs(Protocol::StartAs::User)
, m_serverStarted(false)