diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-07-21 12:47:14 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-07-21 12:50:24 +0200 |
commit | b94821b6a9dc81ae4dc24356c33a14f23b669e31 (patch) | |
tree | 5bad10f7ee9df262c1c8dbb312297ba028d3fccd /src/plugins/cppeditor/cpphoverhandler.cpp | |
parent | c969b6e1cc66e0a4174ee607f4f99f36134b4038 (diff) | |
download | qt-creator-b94821b6a9dc81ae4dc24356c33a14f23b669e31.tar.gz |
Get rid of the deprecated method Overview::setShowFullQualifiedNames().
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); |