Change some uses of QMap::insertMulti to QMultiMap::insert
By casting it, these are situations where we cannot change the type itself to QMultiMap. For QVariant it's a public define and for dbus it's the type of an argument to the function. Change-Id: I0f385dc857fce5de3e8254d18268fd84a6d7707c Reviewed-by: Lars Knoll <lars.knoll@qt.io>
This commit is contained in:
parent
b79d74e96f
commit
43837f38b2
@ -944,7 +944,7 @@ static bool convert(const QVariant::Private *d, int t, void *result, bool *ok)
|
||||
const QVariantHash *hash = v_cast<QVariantHash>(d);
|
||||
const auto end = hash->end();
|
||||
for (auto it = hash->begin(); it != end; ++it)
|
||||
map->insertMulti(it.key(), it.value());
|
||||
static_cast<QMultiMap<QString, QVariant> *>(map)->insert(it.key(), it.value());
|
||||
#ifndef QT_BOOTSTRAPPED
|
||||
} else if (d->type == QMetaType::QCborValue) {
|
||||
if (!v_cast<QCborValue>(d)->isMap())
|
||||
|
@ -841,7 +841,7 @@ namespace QtPrivate {
|
||||
QAssociativeIterable iter = QVariantValueHelperInterface<QAssociativeIterable>::invoke(v);
|
||||
QVariantMap l;
|
||||
for (QAssociativeIterable::const_iterator it = iter.begin(), end = iter.end(); it != end; ++it)
|
||||
l.insertMulti(it.key().toString(), it.value());
|
||||
static_cast<QMultiMap<QString, QVariant> &>(l).insert(it.key().toString(), it.value());
|
||||
return l;
|
||||
}
|
||||
return QVariantValueHelper<QVariantMap>::invoke(v);
|
||||
|
@ -321,7 +321,7 @@ inline const QDBusArgument &operator>>(const QDBusArgument &arg, QMap<Key, T> &m
|
||||
T value;
|
||||
arg.beginMapEntry();
|
||||
arg >> key >> value;
|
||||
map.insertMulti(key, value);
|
||||
static_cast<QMultiMap<Key, T> &>(map).insert(key, value);
|
||||
arg.endMapEntry();
|
||||
}
|
||||
arg.endMap();
|
||||
|
Loading…
Reference in New Issue
Block a user