forked from qt-creator/qt-creator
Fixed prettyprint of template types.
This commit is contained in:
@@ -39,12 +39,23 @@ Overview::Overview()
|
||||
_showArgumentNames(false),
|
||||
_showReturnTypes(false),
|
||||
_showFunctionSignatures(true),
|
||||
_showFullyQualifiedNames(false)
|
||||
_showFullyQualifiedNames(false),
|
||||
_richText(false)
|
||||
{ }
|
||||
|
||||
Overview::~Overview()
|
||||
{ }
|
||||
|
||||
bool Overview::richText() const
|
||||
{
|
||||
return _richText;
|
||||
}
|
||||
|
||||
void Overview::setRichText(bool richText)
|
||||
{
|
||||
_richText = richText;
|
||||
}
|
||||
|
||||
bool Overview::showArgumentNames() const
|
||||
{
|
||||
return _showArgumentNames;
|
||||
|
||||
Reference in New Issue
Block a user