From 67d0ab3facf07114f22aaa41717d35d09bb261d9 Mon Sep 17 00:00:00 2001 From: Leandro Melo Date: Tue, 31 Aug 2010 13:40:13 +0200 Subject: Remove option to extend tooltips. --- src/plugins/cppeditor/cpphoverhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp') 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); -- cgit v1.2.1