forked from qt-creator/qt-creator
Integrate new filter engine
Adapt the code to deprecated usage of map as a multi map, hence all cases replaced by QMultiMap. Change-Id: I2d480467cd6e91d3e880555e6a21058dec056b3f Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
This commit is contained in:
@@ -86,14 +86,14 @@ void unregisterDocumentation(const QStringList &fileNames)
|
||||
m_instance->unregisterDocumentation(fileNames);
|
||||
}
|
||||
|
||||
QMap<QString, QUrl> linksForIdentifier(const QString &id)
|
||||
QMultiMap<QString, QUrl> linksForIdentifier(const QString &id)
|
||||
{
|
||||
return checkInstance() ? m_instance->linksForIdentifier(id) : QMap<QString, QUrl>();
|
||||
return checkInstance() ? m_instance->linksForIdentifier(id) : QMultiMap<QString, QUrl>();
|
||||
}
|
||||
|
||||
QMap<QString, QUrl> linksForKeyword(const QString &keyword)
|
||||
QMultiMap<QString, QUrl> linksForKeyword(const QString &keyword)
|
||||
{
|
||||
return checkInstance() ? m_instance->linksForKeyword(keyword) : QMap<QString, QUrl>();
|
||||
return checkInstance() ? m_instance->linksForKeyword(keyword) : QMultiMap<QString, QUrl>();
|
||||
}
|
||||
|
||||
QByteArray fileData(const QUrl &url)
|
||||
|
||||
Reference in New Issue
Block a user