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
7bf2c702
Commit
7bf2c702
authored
Oct 19, 2021
by
Laurent Montel
😁
Browse files
Return directly pointer
parent
33291cee
Pipeline
#89769
passed with stage
in 50 minutes and 55 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kmail/plugins/antispamplugin/antispamplugin.cpp
View file @
7bf2c702
...
...
@@ -20,8 +20,7 @@ AntiSpamPlugin::~AntiSpamPlugin()
PimCommon
::
GenericPluginInterface
*
AntiSpamPlugin
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
AntiSpamPluginInterface
(
parent
);
return
interface
;
return
new
AntiSpamPluginInterface
(
parent
);
}
#include
"antispamplugin.moc"
kmail/plugins/antivirusplugin/antivirusplugin.cpp
View file @
7bf2c702
...
...
@@ -21,8 +21,7 @@ AntiVirusPlugin::~AntiVirusPlugin()
PimCommon
::
GenericPluginInterface
*
AntiVirusPlugin
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
AntiVirusPluginInterface
(
parent
);
return
interface
;
return
new
AntiVirusPluginInterface
(
parent
);
}
#include
"antivirusplugin.moc"
kmail/plugins/expertplugin/expertplugin.cpp
View file @
7bf2c702
...
...
@@ -21,8 +21,7 @@ ExpertPlugin::~ExpertPlugin()
PimCommon
::
GenericPluginInterface
*
ExpertPlugin
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
ExpertPluginInterface
(
parent
);
return
interface
;
return
new
ExpertPluginInterface
(
parent
);
}
#include
"expertplugin.moc"
kmail/plugins/logactivitiesplugin/logactivitiesplugin.cpp
View file @
7bf2c702
...
...
@@ -21,8 +21,7 @@ LogActivitiesPlugin::~LogActivitiesPlugin()
PimCommon
::
GenericPluginInterface
*
LogActivitiesPlugin
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
LogActivitiesPluginInterface
(
parent
);
return
interface
;
return
new
LogActivitiesPluginInterface
(
parent
);
}
#include
"logactivitiesplugin.moc"
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