QTextDocument: Change use of QMap::unite to QMap::insert
None of the code I could see handles the map like a multimap. Change-Id: I9d51da6dafed4317e801703599e83fb038c22a1d Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
This commit is contained in:
parent
43837f38b2
commit
6f5556e7b4
@ -3085,7 +3085,7 @@ void QTextDocumentPrivate::mergeCachedResources(const QTextDocumentPrivate *priv
|
||||
if (!priv)
|
||||
return;
|
||||
|
||||
cachedResources.unite(priv->cachedResources);
|
||||
cachedResources.insert(priv->cachedResources);
|
||||
}
|
||||
|
||||
void QTextHtmlExporter::emitBackgroundAttribute(const QTextFormat &format)
|
||||
|
Loading…
Reference in New Issue
Block a user