Skip to content
GitLab
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
bcc2a195
Commit
bcc2a195
authored
Feb 11, 2009
by
con
Browse files
Fixes: - Html used for "No Documentation found" was invalid
RevBy: - dt
parent
4a3b4acb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/help/helpplugin.cpp
View file @
bcc2a195
...
...
@@ -570,8 +570,8 @@ void HelpPlugin::activateContext()
}
if
(
viewer
)
{
viewer
->
setHtml
(
tr
(
"<title>No Documentation</title><
br
><br>"
"<center><b>%1</b><br
><br
>No documentation available."
).
viewer
->
setHtml
(
tr
(
"<
html><head><
title>No Documentation</title><
/head><body
><br
/
>"
"<center><b>%1</b><br
/
>No documentation available.
</center></body></html>
"
).
arg
(
id
));
viewer
->
setSource
(
QUrl
());
//activateIndex();
...
...
@@ -589,8 +589,8 @@ void HelpPlugin::activateContext()
if
(
viewer
)
{
viewer
->
setSource
(
QUrl
());
viewer
->
setHtml
(
"<title>No Documentation</title><br><br><center>No"
" documentation available."
);
viewer
->
setHtml
(
"<
html><head><
title>No Documentation</title><
/head><body><
br
/
><br
/
><center>No"
" documentation available.
</center></body></html>
"
);
//activateIndex();
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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