diff options
author | Dario Freddi <dario.freddi@collabora.co.uk> | 2011-06-09 16:59:07 +0200 |
---|---|---|
committer | Dario Freddi <dario.freddi@collabora.com> | 2012-07-03 11:11:20 +0200 |
commit | fbf59fe4d4eb1bcca98aedf7b4743724b36e1c11 (patch) | |
tree | bbb05a0aa386acf78784af36385ff6fbf3c8c0a9 /TelepathyQt | |
parent | bbdcb504b9eb0ac8243b31e4f73f60644c71ff37 (diff) |
dbus-tubes: Don't use insertMulti
Diffstat (limited to 'TelepathyQt')
-rw-r--r-- | TelepathyQt/dbus-tube-channel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TelepathyQt/dbus-tube-channel.cpp b/TelepathyQt/dbus-tube-channel.cpp index 496e1697..3e967bc4 100644 --- a/TelepathyQt/dbus-tube-channel.cpp +++ b/TelepathyQt/dbus-tube-channel.cpp @@ -375,7 +375,7 @@ void DBusTubeChannel::onContactsRetrieved(const QUuid &uuid, const QList<Contact // Add it to our connections hash foreach (const Tp::ContactPtr &contact, contacts) { - mPriv->busNames.insertMulti(contact, busName); + mPriv->busNames.insert(contact, busName); added.insert(contact, busName); } |