summaryrefslogtreecommitdiffstats
path: root/examples/help
diff options
context:
space:
mode:
Diffstat (limited to 'examples/help')
-rw-r--r--examples/help/contextsensitivehelp/helpbrowser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/help/contextsensitivehelp/helpbrowser.cpp b/examples/help/contextsensitivehelp/helpbrowser.cpp
index 67314374d..0eb983c05 100644
--- a/examples/help/contextsensitivehelp/helpbrowser.cpp
+++ b/examples/help/contextsensitivehelp/helpbrowser.cpp
@@ -70,7 +70,7 @@ HelpBrowser::HelpBrowser(QWidget *parent)
void HelpBrowser::showHelpForKeyword(const QString &id)
{
if (m_helpEngine) {
- QMap<QString, QUrl> links = m_helpEngine->linksForIdentifier(id);
+ QMultiMap<QString, QUrl> links = m_helpEngine->linksForIdentifier(id);
if (links.count())
setSource(links.constBegin().value());
}