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
Graphics
Gwenview
Commits
52e6d043
Commit
52e6d043
authored
Oct 13, 2022
by
Laurent Montel
Browse files
Use QStringLiteral
parent
47b70eb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
importer/importerconfigdialog.cpp
View file @
52e6d043
...
...
@@ -42,11 +42,11 @@ struct ImporterConfigDialogPrivate : public Ui_ImporterConfigDialog {
void
setupHelpText
()
{
QString
helpText
=
Q
Latin1
String
(
"<ul>"
);
QString
helpText
=
QString
Literal
(
"<ul>"
);
FileNameFormater
::
HelpMap
map
=
FileNameFormater
::
helpMap
();
FileNameFormater
::
HelpMap
::
ConstIterator
it
=
map
.
constBegin
(),
end
=
map
.
constEnd
();
for
(;
it
!=
end
;
++
it
)
{
const
QString
keyword
=
'{'
+
it
.
key
()
+
'}'
;
const
QString
keyword
=
QLatin1Char
(
'{'
)
+
it
.
key
()
+
QLatin1Char
(
'}'
)
;
const
QString
explanation
=
it
.
value
().
toHtmlEscaped
();
const
QString
link
=
QStringLiteral
(
"<a href='%1'>%1</a>"
).
arg
(
keyword
);
helpText
+=
...
...
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