aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cpphoverhandler.cpp
diff options
context:
space:
mode:
authorLeandro Melo <leandro.melo@nokia.com>2010-08-31 13:40:13 +0200
committerLeandro Melo <leandro.melo@nokia.com>2010-08-31 19:04:52 +0200
commit67d0ab3facf07114f22aaa41717d35d09bb261d9 (patch)
treea1111eddfff4dd44ae87b39c5e76778a9906c795 /src/plugins/cppeditor/cpphoverhandler.cpp
parentba12a3390eb0ec1a54c226ed137764a5efc2b6b0 (diff)
Remove option to extend tooltips.
Diffstat (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp')
-rw-r--r--src/plugins/cppeditor/cpphoverhandler.cpp2
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);