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
PIM
KDE PIM Runtime
Commits
228c8ffb
Commit
228c8ffb
authored
Aug 09, 2021
by
Laurent Montel
😁
Browse files
const'ify
parent
12f0a0e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/dav/resource/settings.cpp
View file @
228c8ffb
...
...
@@ -160,7 +160,7 @@ KDAV::DavUrl::List Settings::configuredDavUrls()
QMap
<
QString
,
UrlConfiguration
*>::
const_iterator
it
=
mUrls
.
cbegin
();
const
QMap
<
QString
,
UrlConfiguration
*>::
const_iterator
itEnd
=
mUrls
.
cend
();
for
(;
it
!=
itEnd
;
++
it
)
{
QStringList
split
=
it
.
key
().
split
(
QLatin1Char
(
','
));
const
QStringList
split
=
it
.
key
().
split
(
QLatin1Char
(
','
));
davUrls
<<
configuredDavUrl
(
KDAV
::
ProtocolInfo
::
protocolByName
(
split
.
at
(
1
)),
split
.
at
(
0
));
}
...
...
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