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
KMail
Commits
aaa66405
Commit
aaa66405
authored
May 20, 2021
by
Laurent Montel
😁
Browse files
Reactivate code
parent
7fc0f3b1
Pipeline
#62550
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
agents/mailmergeagent/mailmergeagent.cpp
View file @
aaa66405
...
...
@@ -6,6 +6,7 @@
#include
"mailmergeagent.h"
#include
"mailmergeagent_debug.h"
#include
"mailmergeagentadaptor.h"
#include
"mailmergeagentsettings.h"
#include
"mailmergemanager.h"
#include
<AgentInstance>
...
...
@@ -31,10 +32,8 @@ MailMergeAgent::MailMergeAgent(const QString &id)
:
Akonadi
::
AgentBase
(
id
)
,
mManager
(
new
MailMergeManager
(
this
))
{
#if 0
connect
(
mManager
,
&
MailMergeManager
::
needUpdateConfigDialogBox
,
this
,
&
MailMergeAgent
::
needUpdateConfigDialogBox
);
new
MailMergeAgentAdaptor
(
this
);
#endif
QDBusConnection
::
sessionBus
().
registerObject
(
QStringLiteral
(
"/MailMergeAgent"
),
this
,
QDBusConnection
::
ExportAdaptors
);
...
...
agents/mailmergeagent/mailmergemanager.h
View file @
aaa66405
...
...
@@ -19,4 +19,7 @@ public:
void
load
(
bool
state
=
false
);
void
stopAll
();
Q_REQUIRED_RESULT
bool
itemRemoved
(
Akonadi
::
Item
::
Id
id
);
Q_SIGNALS:
void
needUpdateConfigDialogBox
();
};
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