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
Tobias Hunger
qt-creator
Commits
315319ab
Commit
315319ab
authored
Sep 24, 2010
by
Robert Loehning
Browse files
Fixed HTML tags for tooltip
parent
17e0886c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
315319ab
...
...
@@ -594,7 +594,7 @@ QString QtVersion::toHtml() const
{
QString
rc
;
QTextStream
str
(
&
rc
);
str
<<
"<html><
/head><
body><table>"
;
str
<<
"<html><body><table>"
;
str
<<
"<tr><td><b>"
<<
QtVersionManager
::
tr
(
"Name:"
)
<<
"</b></td><td>"
<<
displayName
()
<<
"</td></tr>"
;
str
<<
"<tr><td><b>"
<<
QtVersionManager
::
tr
(
"Source:"
)
...
...
@@ -622,7 +622,7 @@ QString QtVersion::toHtml() const
for
(
QHash
<
QString
,
QString
>::
const_iterator
it
=
vInfo
.
constBegin
();
it
!=
vcend
;
++
it
)
str
<<
"<tr><td><pre>"
<<
it
.
key
()
<<
"</pre></td><td>"
<<
it
.
value
()
<<
"</td></tr>"
;
}
str
<<
"<table></body></html>"
;
str
<<
"<
/
table></body></html>"
;
return
rc
;
}
...
...
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