aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppUtils.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-02-19 16:56:55 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-02-19 16:56:55 +0000
commita64840aee77b706ca62a8b80a51857e79639231e (patch)
tree5775d03193638d5b94e2a946935cc2bcaf6fc6fc /source/QXmppUtils.cpp
parented0d231d4ca34ed38d4cd3298c6d9a4a5a643785 (diff)
downloadqxmpp-a64840aee77b706ca62a8b80a51857e79639231e.tar.gz
fix typo
Diffstat (limited to 'source/QXmppUtils.cpp')
-rw-r--r--source/QXmppUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/QXmppUtils.cpp b/source/QXmppUtils.cpp
index 43f028c6..8bb5b0ab 100644
--- a/source/QXmppUtils.cpp
+++ b/source/QXmppUtils.cpp
@@ -37,7 +37,7 @@ QString jidToResource(const QString& jid)
{
const int pos = jid.indexOf(QChar('/'));
if (pos < 0)
- return QString;
+ return QString();
return jid.mid(pos+1);
}