diff options
Diffstat (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp')
-rw-r--r-- | src/plugins/cppeditor/cpphoverhandler.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index 2b4f7a3cdc..ecb2cecc95 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -304,7 +304,6 @@ void CppHoverHandler::handleLookupItemMatch(const LookupItem &lookupItem, Overview overview; overview.setShowArgumentNames(true); overview.setShowReturnTypes(true); - overview.setShowFullyQualifiedNamed(true); if (!matchingDeclaration && assignTooltip) { m_toolTip = overview.prettyType(matchingType, QString()); @@ -356,7 +355,6 @@ void CppHoverHandler::handleLookupItemMatch(const LookupItem &lookupItem, overview.setShowArgumentNames(false); overview.setShowReturnTypes(false); overview.setShowFunctionSignatures(false); - overview.setShowFullyQualifiedNamed(false); const QString &simpleName = overview.prettyName(matchingDeclaration->name()); overview.setShowFunctionSignatures(true); const QString &specifierId = overview.prettyType(matchingType, simpleName); |