Fixed tooltips for enumerators

The helpId was working but the tooltip text was empty.

Reviewed-by: Roberto
This commit is contained in:
Thorbjørn Lindeijer
2009-02-06 14:43:13 +01:00
parent 903457ee69
commit 233502a795
2 changed files with 6 additions and 3 deletions

View File

@@ -92,6 +92,8 @@ QString TypePrettyPrinter::operator()(const FullySpecifiedType &type, const QStr
if (ch.isLetterOrNumber() || ch == QLatin1Char('_'))
text += QLatin1Char(' ');
text += _name;
} else {
text += name;
}
(void) switchName(previousName);
return text;