aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/cplusplus/TypePrettyPrinter.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-05-27 15:40:39 +0200
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-05-27 16:00:11 +0200
commit985aa5727fc27477cff4207748cbffb1dca84a86 (patch)
tree2d379b9b67ef41fb7876aa54fb470fef355dc49e /src/libs/cplusplus/TypePrettyPrinter.cpp
parent878bc0720181a2fb7afb95d9fd950f9e911443be (diff)
Fixed a missing space in the tooltips after a template id
Reviewed-by: Roberto Raggi
Diffstat (limited to 'src/libs/cplusplus/TypePrettyPrinter.cpp')
-rw-r--r--src/libs/cplusplus/TypePrettyPrinter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp
index f2594bacfe..0c376dfccc 100644
--- a/src/libs/cplusplus/TypePrettyPrinter.cpp
+++ b/src/libs/cplusplus/TypePrettyPrinter.cpp
@@ -364,7 +364,8 @@ void TypePrettyPrinter::space()
const QChar ch = _text.at(_text.length() - 1);
- if (ch.isLetterOrNumber() || ch == QLatin1Char('_') || ch == QLatin1Char(')'))
+ if (ch.isLetterOrNumber() || ch == QLatin1Char('_') || ch == QLatin1Char(')')
+ || ch == QLatin1Char('>'))
_text += QLatin1Char(' ');
}