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
KAlarm
Commits
3c18ded9
Commit
3c18ded9
authored
Aug 04, 2015
by
Laurent Montel
Browse files
Const'ify
parent
0a0c8dc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
autostart/autostart.cpp
View file @
3c18ded9
...
...
@@ -86,8 +86,8 @@ void AutostartApp::slotAutostart()
qCWarning
(
KALARMAUTOSTART_LOG
)
<<
"No command line"
;
else
{
QString
prog
=
args
->
arg
(
0
);
QString
exe
=
QStandardPaths
::
findExecutable
(
prog
);
const
QString
prog
=
args
->
arg
(
0
);
const
QString
exe
=
QStandardPaths
::
findExecutable
(
prog
);
if
(
exe
.
isEmpty
())
qCWarning
(
KALARMAUTOSTART_LOG
)
<<
"Executable not found:"
<<
prog
;
else
...
...
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