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
Akonadi Data Import Wizard
Commits
ead21588
Commit
ead21588
authored
Feb 22, 2022
by
Laurent Montel
😁
Browse files
Use QListIterator in qt6
parent
05f18af3
Pipeline
#140969
failed with stage
in 1 minute and 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/importmailpluginmanager.cpp
View file @
ead21588
...
...
@@ -38,7 +38,11 @@ ImportMailPluginManager *ImportMailPluginManager::self()
bool
ImportMailPluginManager
::
initializePluginList
()
{
const
QVector
<
KPluginMetaData
>
plugins
=
KPluginMetaData
::
findPlugins
(
QStringLiteral
(
"importwizard"
));
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QVectorIterator
<
KPluginMetaData
>
i
(
plugins
);
#else
QListIterator
<
KPluginMetaData
>
i
(
plugins
);
#endif
i
.
toBack
();
while
(
i
.
hasPrevious
())
{
ImportMailPluginManagerInfo
info
;
...
...
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