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
25fba8cd
Commit
25fba8cd
authored
Feb 22, 2022
by
Laurent Montel
Browse files
Use QListIterator in qt6
parent
bf208839
Pipeline
#140968
failed with stage
in 2 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kmail/editorplugins/insertshorturl/shorturlengineplugin/shorturlenginepluginmanager.cpp
View file @
25fba8cd
...
...
@@ -39,7 +39,11 @@ void ShortUrlEnginePluginManagerPrivate::initializePlugins()
{
const
QVector
<
KPluginMetaData
>
plugins
=
KPluginMetaData
::
findPlugins
(
QStringLiteral
(
"pimcommon/shorturlengine"
));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QVectorIterator
<
KPluginMetaData
>
i
(
plugins
);
#else
QListIterator
<
KPluginMetaData
>
i
(
plugins
);
#endif
i
.
toBack
();
while
(
i
.
hasPrevious
())
{
ShortUrlEnginePluginInfo
info
;
...
...
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