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
PIM
KDE PIM Add-ons
Commits
bf208839
Commit
bf208839
authored
Feb 22, 2022
by
Laurent Montel
Browse files
Add missing space
parent
e4024a4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerconfigureplugins/openurlwith/openurlwithconfigurewidget.cpp
View file @
bf208839
...
...
@@ -74,7 +74,7 @@ OpenUrlWithConfigureWidget::~OpenUrlWithConfigureWidget()
void
OpenUrlWithConfigureWidget
::
displayText
(
const
MessageViewer
::
OpenWithUrlInfo
&
r
,
OpenUrlWithConfigureItem
*
item
)
{
item
->
setInfo
(
r
);
item
->
setText
(
QStringLiteral
(
"%1 (%2)"
).
arg
(
r
.
command
()
+
r
.
commandLine
(),
r
.
url
()));
item
->
setText
(
QStringLiteral
(
"%1 (%2)"
).
arg
(
r
.
command
()
+
QLatin1Char
(
' '
)
+
r
.
commandLine
(),
r
.
url
()));
}
void
OpenUrlWithConfigureWidget
::
loadSettings
()
...
...
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