summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/helpmanager.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2019-10-16 13:28:28 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-04-02 11:22:03 +0000
commit9ca7326d90f5a901604cab954c10745fa427e86a (patch)
tree63cbe5c0c87f7b5381bdf827cb2085fd4f6859b1 /src/plugins/coreplugin/helpmanager.h
parentbf6ecbb042f5a45b89ce227a827dc3e127e5ff35 (diff)
downloadqt-creator-9ca7326d90f5a901604cab954c10745fa427e86a.tar.gz
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>
Diffstat (limited to 'src/plugins/coreplugin/helpmanager.h')
-rw-r--r--src/plugins/coreplugin/helpmanager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/helpmanager.h b/src/plugins/coreplugin/helpmanager.h
index 7b7e4f052e..ac948b633d 100644
--- a/src/plugins/coreplugin/helpmanager.h
+++ b/src/plugins/coreplugin/helpmanager.h
@@ -63,8 +63,8 @@ CORE_EXPORT QString documentationPath();
CORE_EXPORT void registerDocumentation(const QStringList &fileNames);
CORE_EXPORT void unregisterDocumentation(const QStringList &fileNames);
-CORE_EXPORT QMap<QString, QUrl> linksForIdentifier(const QString &id);
-CORE_EXPORT QMap<QString, QUrl> linksForKeyword(const QString &id);
+CORE_EXPORT QMultiMap<QString, QUrl> linksForIdentifier(const QString &id);
+CORE_EXPORT QMultiMap<QString, QUrl> linksForKeyword(const QString &id);
CORE_EXPORT QByteArray fileData(const QUrl &url);
CORE_EXPORT void showHelpUrl(const QUrl &url, HelpViewerLocation location = HelpModeAlways);