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
KDE PIM Add-ons
Commits
1f9cc88e
Commit
1f9cc88e
authored
Jul 06, 2021
by
Laurent Montel
Browse files
Adapt to new api
parent
c5b0a824
Pipeline
#68839
passed with stage
in 62 minutes and 45 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
1f9cc88e
...
@@ -73,7 +73,7 @@ set(LIBKLEO_LIB_VERSION "5.17.40")
...
@@ -73,7 +73,7 @@ set(LIBKLEO_LIB_VERSION "5.17.40")
set
(
AKONADI_LIB_VERSION
"5.17.40"
)
set
(
AKONADI_LIB_VERSION
"5.17.40"
)
set
(
INCIDENCEEDITOR_LIB_VERSION
"5.17.40"
)
set
(
INCIDENCEEDITOR_LIB_VERSION
"5.17.40"
)
set
(
KTNEF_LIB_VERSION
"5.17.40"
)
set
(
KTNEF_LIB_VERSION
"5.17.40"
)
set
(
MESSAGELIB_LIB_VERSION
"5.17.5
5
"
)
set
(
MESSAGELIB_LIB_VERSION
"5.17.5
6
"
)
set
(
AKONADICALENDAR_LIB_VERSION
"5.17.40"
)
set
(
AKONADICALENDAR_LIB_VERSION
"5.17.40"
)
set
(
CALENDAR_UTILS_VERSION
"5.17.40"
)
set
(
CALENDAR_UTILS_VERSION
"5.17.40"
)
set
(
KPIMTEXTEDIT_LIB_VERSION
"5.17.40"
)
set
(
KPIMTEXTEDIT_LIB_VERSION
"5.17.40"
)
...
...
kmail/checkbeforedeletemailplugins/confirmbeforedeleting/confirmbeforedeletingplugin.cpp
View file @
1f9cc88e
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
#include
"confirmbeforedeletingplugin.h"
#include
"confirmbeforedeletingplugin.h"
#include
"confirmbeforedeletingdialog.h"
#include
"confirmbeforedeletingdialog.h"
#include
"confirmbeforedeletinginterface.h"
#include
<KPluginFactory>
#include
<KPluginFactory>
K_PLUGIN_CLASS_WITH_JSON
(
ConfirmBeforeDeletingPlugin
,
"kmail_confirmbeforedeletingplugin.json"
)
K_PLUGIN_CLASS_WITH_JSON
(
ConfirmBeforeDeletingPlugin
,
"kmail_confirmbeforedeletingplugin.json"
)
...
@@ -25,4 +26,9 @@ void ConfirmBeforeDeletingPlugin::showConfigureDialog(QWidget *parent)
...
@@ -25,4 +26,9 @@ void ConfirmBeforeDeletingPlugin::showConfigureDialog(QWidget *parent)
dlg
.
exec
();
dlg
.
exec
();
}
}
MessageViewer
::
MessageViewerCheckBeforeDeletingInterface
*
ConfirmBeforeDeletingPlugin
::
createInterface
(
QObject
*
parent
)
{
return
new
ConfirmBeforeDeletingInterface
(
parent
);
}
#include
"confirmbeforedeletingplugin.moc"
#include
"confirmbeforedeletingplugin.moc"
kmail/checkbeforedeletemailplugins/confirmbeforedeleting/confirmbeforedeletingplugin.h
View file @
1f9cc88e
...
@@ -15,4 +15,5 @@ public:
...
@@ -15,4 +15,5 @@ public:
~
ConfirmBeforeDeletingPlugin
()
override
;
~
ConfirmBeforeDeletingPlugin
()
override
;
void
showConfigureDialog
(
QWidget
*
parent
)
override
;
void
showConfigureDialog
(
QWidget
*
parent
)
override
;
Q_REQUIRED_RESULT
MessageViewer
::
MessageViewerCheckBeforeDeletingInterface
*
createInterface
(
QObject
*
parent
)
override
;
};
};
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