diff options
| author | Matt Broadstone <mbroadst@gmail.com> | 2012-11-15 18:58:52 -0500 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-11-16 07:31:16 +0100 |
| commit | bf537e01032f2f0bb013fb45e4a9c13113f77a6f (patch) | |
| tree | 204a8d6fa700e3ebcb44cf65712cf63764202d9f /src/server/QXmppServer.cpp | |
| parent | 1ba3b087975e523bb05b0703a5b0fa8392b7429b (diff) | |
move from toAscii() to toLatin1()
Diffstat (limited to 'src/server/QXmppServer.cpp')
| -rw-r--r-- | src/server/QXmppServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/QXmppServer.cpp b/src/server/QXmppServer.cpp index aceffe28..0d10b395 100644 --- a/src/server/QXmppServer.cpp +++ b/src/server/QXmppServer.cpp @@ -167,7 +167,7 @@ bool QXmppServerPrivate::routeData(const QString &to, const QByteArray &data) // if we did not find an outgoing server, // we need to establish the S2S connection QXmppOutgoingServer *conn = new QXmppOutgoingServer(domain, 0); - conn->setLocalStreamKey(QXmppUtils::generateStanzaHash().toAscii()); + conn->setLocalStreamKey(QXmppUtils::generateStanzaHash().toLatin1()); conn->moveToThread(q->thread()); conn->setParent(q); |
