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
KMail
Commits
a046c2a5
Commit
a046c2a5
authored
Jan 03, 2022
by
Laurent Montel
Browse files
Add parent + explicit
parent
003b5330
Pipeline
#117692
passed with stage
in 4 minutes and 28 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/foldershortcutactionmanager.h
View file @
a046c2a5
...
...
@@ -23,7 +23,7 @@ class FolderShortcutCommand : public QObject
Q_OBJECT
public:
FolderShortcutCommand
(
QWidget
*
mainwidget
,
const
Akonadi
::
Collection
&
col
);
explicit
FolderShortcutCommand
(
QWidget
*
mainwidget
,
const
Akonadi
::
Collection
&
col
);
~
FolderShortcutCommand
()
override
;
public
Q_SLOTS
:
...
...
src/mailserviceimpl.cpp
View file @
a046c2a5
...
...
@@ -20,7 +20,8 @@
#include
<QDBusConnection>
using
namespace
KMail
;
MailServiceImpl
::
MailServiceImpl
()
MailServiceImpl
::
MailServiceImpl
(
QObject
*
parent
)
:
QObject
(
parent
)
{
new
ServiceAdaptor
(
this
);
QDBusConnection
::
sessionBus
().
registerObject
(
QStringLiteral
(
"/MailTransportService"
),
this
);
...
...
src/mailserviceimpl.h
View file @
a046c2a5
...
...
@@ -20,7 +20,7 @@ class MailServiceImpl : public QObject
{
Q_OBJECT
public:
MailServiceImpl
();
explicit
MailServiceImpl
(
QObject
*
parent
=
nullptr
);
Q_REQUIRED_RESULT
bool
sendMessage
(
const
QString
&
from
,
const
QString
&
to
,
const
QString
&
cc
,
...
...
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