summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/proxy/proxy_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/proxy/proxy_server.cpp')
-rw-r--r--tests/auto/widgets/proxy/proxy_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/widgets/proxy/proxy_server.cpp b/tests/auto/widgets/proxy/proxy_server.cpp
index 3bf915609..3e52de4f2 100644
--- a/tests/auto/widgets/proxy/proxy_server.cpp
+++ b/tests/auto/widgets/proxy/proxy_server.cpp
@@ -39,7 +39,7 @@ ProxyServer::ProxyServer(QObject *parent) : QObject(parent)
void ProxyServer::setCredentials(const QByteArray &user, const QByteArray password)
{
m_auth.append(user);
- m_auth.append(QChar(':'));
+ m_auth.append(':');
m_auth.append(password);
m_auth = m_auth.toBase64();
m_authenticate = true;