Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
985aa572
Commit
985aa572
authored
May 27, 2009
by
Thorbjørn Lindeijer
Browse files
Fixed a missing space in the tooltips after a template id
Reviewed-by: Roberto Raggi
parent
878bc072
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/TypePrettyPrinter.cpp
View file @
985aa572
...
@@ -364,7 +364,8 @@ void TypePrettyPrinter::space()
...
@@ -364,7 +364,8 @@ void TypePrettyPrinter::space()
const
QChar
ch
=
_text
.
at
(
_text
.
length
()
-
1
);
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
(
' '
);
_text
+=
QLatin1Char
(
' '
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment