Use QMultiHash::insert() instead of insertMulti()
Change-Id: I5daeba708a9efcf60e92cfc9a04e80546e9ae6a2 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
parent
2faccdf9a6
commit
66b6e28c01
@ -222,7 +222,7 @@ static dbus_bool_t qDBusAddWatch(DBusWatch *watch, void *data)
|
||||
watcher.write->setEnabled(q_dbus_watch_get_enabled(watch));
|
||||
d->connect(watcher.write, &QSocketNotifier::activated, d, &QDBusConnectionPrivate::socketWrite);
|
||||
}
|
||||
d->watchers.insertMulti(fd, watcher);
|
||||
d->watchers.insert(fd, watcher);
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -2245,7 +2245,7 @@ bool QDBusConnectionPrivate::addSignalHook(const QString &key, const SignalHook
|
||||
}
|
||||
}
|
||||
|
||||
signalHooks.insertMulti(key, hook);
|
||||
signalHooks.insert(key, hook);
|
||||
connect(hook.obj, &QObject::destroyed, this, &QDBusConnectionPrivate::objectDestroyed,
|
||||
Qt::ConnectionType(Qt::BlockingQueuedConnection | Qt::UniqueConnection));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user