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 Add-ons
Commits
51f49171
Commit
51f49171
authored
Apr 04, 2021
by
Laurent Montel
😁
Browse files
Use K_PLUGIN_CLASS_WITH_JSON
parent
f0e48881
Pipeline
#56466
passed with stage
in 54 minutes and 51 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
akonadi-import-wizard/mailapp/mailappimportdata.cpp
View file @
51f49171
...
...
@@ -12,7 +12,7 @@
#include <KPluginFactory>
#include <QDir>
K_PLUGIN_
FACTORY
_WITH_JSON
(
MailAppImporterFactory
,
"mailappimporter.json"
,
registerPlugin
<
MailAppImportData
>
();
)
K_PLUGIN_
CLASS
_WITH_JSON
(
MailAppImporterFactory
,
"mailappimporter.json"
)
MailAppImportData
::
MailAppImportData
(
QObject
*
parent
,
const
QList
<
QVariant
>
&
)
:
LibImportWizard
::
AbstractImporter
(
parent
)
...
...
akonadi-import-wizard/oe/oeimportdata.cpp
View file @
51f49171
...
...
@@ -13,7 +13,7 @@
#include <QDir>
K_PLUGIN_
FACTORY
_WITH_JSON
(
OEImporterFactory
,
"oeimporter.json"
,
registerPlugin
<
OeImportData
>
();
)
K_PLUGIN_
CLASS
_WITH_JSON
(
OEImporterFactory
,
"oeimporter.json"
)
OeImportData
::
OeImportData
(
QObject
*
parent
,
const
QList
<
QVariant
>
&
)
:
LibImportWizard
::
AbstractImporter
(
parent
)
...
...
akonadi-import-wizard/pmail/pmailimportdata.cpp
View file @
51f49171
...
...
@@ -13,7 +13,7 @@
#include <KPluginFactory>
#include <QDir>
K_PLUGIN_
FACTORY
_WITH_JSON
(
PMailImporterFactory
,
"pmailimporter.json"
,
registerPlugin
<
PMailImportData
>
();
)
K_PLUGIN_
CLASS
_WITH_JSON
(
PMailImporterFactory
,
"pmailimporter.json"
)
PMailImportData
::
PMailImportData
(
QObject
*
parent
,
const
QList
<
QVariant
>
&
)
:
LibImportWizard
::
AbstractImporter
(
parent
)
{
...
...
akonadi-import-wizard/thebat/thebatimportdata.cpp
View file @
51f49171
...
...
@@ -13,7 +13,7 @@
#include <QDir>
K_PLUGIN_
FACTORY
_WITH_JSON
(
TheBatImporterFactory
,
"thebatimporter.json"
,
registerPlugin
<
TheBatImportData
>
();
)
K_PLUGIN_
CLASS
_WITH_JSON
(
TheBatImporterFactory
,
"thebatimporter.json"
)
TheBatImportData
::
TheBatImportData
(
QObject
*
parent
,
const
QList
<
QVariant
>
&
)
:
LibImportWizard
::
AbstractImporter
(
parent
)
...
...
Write
Preview
Markdown
is supported
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