diff options
Diffstat (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp')
-rw-r--r-- | src/plugins/cppeditor/cpphoverhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index 47c7ee97fb..cebf33c43e 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -114,7 +114,7 @@ void CppHoverHandler::decorateToolTip(TextEditor::ITextEditor *editor) const TextEditor::HelpItem &help = lastHelpItemIdentified(); if (help.isValid()) { - const QString &contents = help.extractContent(extendToolTips(editor)); + const QString &contents = help.extractContent(false); if (!contents.isEmpty()) { if (help.category() == TextEditor::HelpItem::ClassOrNamespace) appendToolTip(contents); |