Get rid of the deprecated method Overview::setShowFullQualifiedNames().

This commit is contained in:
Roberto Raggi
2010-07-21 12:47:14 +02:00
parent c969b6e1cc
commit b94821b6a9
4 changed files with 2 additions and 54 deletions

View File

@@ -44,7 +44,6 @@ Overview::Overview()
_showArgumentNames(false),
_showReturnTypes(false),
_showFunctionSignatures(true),
_showFullyQualifiedNames(false),
_showDefaultArguments(true)
{ }
@@ -111,16 +110,6 @@ void Overview::setShowFunctionSignatures(bool showFunctionSignatures)
_showFunctionSignatures = showFunctionSignatures;
}
bool Overview::showFullyQualifiedNames() const
{
return _showFullyQualifiedNames;
}
void Overview::setShowFullyQualifiedNamed(bool showFullyQualifiedNames)
{
_showFullyQualifiedNames = showFullyQualifiedNames;
}
bool Overview::showDefaultArguments() const
{
return _showDefaultArguments;