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
3ea72059
Commit
3ea72059
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Add missing override
parent
0498affa
Pipeline
#43218
passed with stage
in 34 minutes and 5 seconds
Changes
16
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
agents/archivemailagent/archivemailmanager.h
View file @
3ea72059
...
...
@@ -20,7 +20,7 @@ class ArchiveMailManager : public QObject
Q_OBJECT
public:
explicit
ArchiveMailManager
(
QObject
*
parent
=
nullptr
);
~
ArchiveMailManager
();
~
ArchiveMailManager
()
override
;
void
removeCollection
(
const
Akonadi
::
Collection
&
collection
);
void
backupDone
(
ArchiveMailInfo
*
info
);
void
pause
();
...
...
agents/archivemailagent/archivemailwidget.h
View file @
3ea72059
...
...
@@ -17,7 +17,7 @@ class ArchiveMailItem : public QTreeWidgetItem
{
public:
explicit
ArchiveMailItem
(
QTreeWidget
*
parent
=
nullptr
);
~
ArchiveMailItem
();
~
ArchiveMailItem
()
override
;
void
setInfo
(
ArchiveMailInfo
*
info
);
ArchiveMailInfo
*
info
()
const
;
...
...
agents/followupreminderagent/followupreminderinfowidget.h
View file @
3ea72059
...
...
@@ -20,7 +20,7 @@ class FollowUpReminderInfoItem : public QTreeWidgetItem
{
public:
explicit
FollowUpReminderInfoItem
(
QTreeWidget
*
parent
=
nullptr
);
~
FollowUpReminderInfoItem
();
~
FollowUpReminderInfoItem
()
override
;
void
setInfo
(
FollowUpReminder
::
FollowUpReminderInfo
*
info
);
FollowUpReminder
::
FollowUpReminderInfo
*
info
()
const
;
...
...
agents/followupreminderagent/followupremindermanager.h
View file @
3ea72059
...
...
@@ -20,7 +20,7 @@ class FollowUpReminderManager : public QObject
Q_OBJECT
public:
explicit
FollowUpReminderManager
(
QObject
*
parent
=
nullptr
);
~
FollowUpReminderManager
();
~
FollowUpReminderManager
()
override
;
void
load
(
bool
forceReloadConfig
=
false
);
void
addReminder
(
FollowUpReminder
::
FollowUpReminderInfo
*
reminder
);
// takes ownership
...
...
agents/followupreminderagent/followupremindernoanswerdialog.h
View file @
3ea72059
...
...
@@ -17,7 +17,7 @@ class FollowUpReminderNoAnswerDialog : public QDialog
Q_OBJECT
public:
explicit
FollowUpReminderNoAnswerDialog
(
QWidget
*
parent
=
nullptr
);
~
FollowUpReminderNoAnswerDialog
();
~
FollowUpReminderNoAnswerDialog
()
override
;
void
setInfo
(
const
QList
<
FollowUpReminder
::
FollowUpReminderInfo
*>
&
info
);
...
...
agents/followupreminderagent/jobs/followupreminderfinishtaskjob.h
View file @
3ea72059
...
...
@@ -15,7 +15,7 @@ class FollowUpReminderFinishTaskJob : public QObject
Q_OBJECT
public:
explicit
FollowUpReminderFinishTaskJob
(
Akonadi
::
Item
::
Id
id
,
QObject
*
parent
=
nullptr
);
~
FollowUpReminderFinishTaskJob
();
~
FollowUpReminderFinishTaskJob
()
override
;
void
start
();
...
...
agents/followupreminderagent/jobs/followupreminderjob.h
View file @
3ea72059
...
...
@@ -16,7 +16,7 @@ class FollowUpReminderJob : public QObject
Q_OBJECT
public:
explicit
FollowUpReminderJob
(
QObject
*
parent
=
nullptr
);
~
FollowUpReminderJob
();
~
FollowUpReminderJob
()
override
;
void
setItem
(
const
Akonadi
::
Item
&
item
);
...
...
agents/followupreminderagent/jobs/followupremindershowmessagejob.h
View file @
3ea72059
...
...
@@ -15,7 +15,7 @@ class FollowUpReminderShowMessageJob : public QObject
Q_OBJECT
public:
explicit
FollowUpReminderShowMessageJob
(
Akonadi
::
Item
::
Id
id
,
QObject
*
parent
=
nullptr
);
~
FollowUpReminderShowMessageJob
();
~
FollowUpReminderShowMessageJob
()
override
;
void
start
();
...
...
agents/mailfilteragent/filterlogdialog.h
View file @
3ea72059
...
...
@@ -44,7 +44,7 @@ class FilterLogDialog : public QDialog
public:
/** constructor */
explicit
FilterLogDialog
(
QWidget
*
parent
);
~
FilterLogDialog
();
~
FilterLogDialog
()
override
;
private:
void
slotTextChanged
();
...
...
agents/sendlateragent/sendlaterconfiguredialog.h
View file @
3ea72059
...
...
@@ -15,7 +15,7 @@ class SendLaterConfigureDialog : public QDialog
Q_OBJECT
public:
explicit
SendLaterConfigureDialog
(
QWidget
*
parent
=
nullptr
);
~
SendLaterConfigureDialog
();
~
SendLaterConfigureDialog
()
override
;
Q_REQUIRED_RESULT
QVector
<
Akonadi
::
Item
::
Id
>
messagesToRemove
()
const
;
...
...
agents/sendlateragent/sendlaterconfigurewidget.h
View file @
3ea72059
...
...
@@ -21,7 +21,7 @@ class SendLaterItem : public QTreeWidgetItem
{
public:
explicit
SendLaterItem
(
QTreeWidget
*
parent
=
nullptr
);
~
SendLaterItem
();
~
SendLaterItem
()
override
;
void
setInfo
(
MessageComposer
::
SendLaterInfo
*
info
);
MessageComposer
::
SendLaterInfo
*
info
()
const
;
...
...
@@ -35,7 +35,7 @@ class SendLaterWidget : public QWidget
Q_OBJECT
public:
explicit
SendLaterWidget
(
QWidget
*
parent
=
nullptr
);
~
SendLaterWidget
();
~
SendLaterWidget
()
override
;
enum
SendLaterColumn
{
To
=
0
,
...
...
agents/sendlateragent/sendlatermanager.h
View file @
3ea72059
...
...
@@ -35,7 +35,7 @@ public:
};
explicit
SendLaterManager
(
QObject
*
parent
);
~
SendLaterManager
();
~
SendLaterManager
()
override
;
void
sendDone
(
MessageComposer
::
SendLaterInfo
*
info
);
void
sendError
(
MessageComposer
::
SendLaterInfo
*
info
,
ErrorType
type
);
...
...
agents/sendlateragent/sendlaterremovemessagejob.h
View file @
3ea72059
...
...
@@ -17,7 +17,7 @@ class SendLaterRemoveMessageJob : public QObject
Q_OBJECT
public:
explicit
SendLaterRemoveMessageJob
(
const
QVector
<
Akonadi
::
Item
::
Id
>
&
listItem
,
QObject
*
parent
=
nullptr
);
~
SendLaterRemoveMessageJob
();
~
SendLaterRemoveMessageJob
()
override
;
void
start
();
...
...
ktnef/src/attachpropertydialog.h
View file @
3ea72059
...
...
@@ -36,7 +36,7 @@ class AttachPropertyDialog : public QDialog
Q_OBJECT
public:
explicit
AttachPropertyDialog
(
QWidget
*
parent
=
nullptr
);
~
AttachPropertyDialog
();
~
AttachPropertyDialog
()
override
;
void
setAttachment
(
KTNEFAttach
*
attach
);
...
...
ktnef/src/ktnefmain.h
View file @
3ea72059
...
...
@@ -37,7 +37,7 @@ class KTNEFMain : public KXmlGuiWindow
public:
explicit
KTNEFMain
(
QWidget
*
parent
=
nullptr
);
~
KTNEFMain
();
~
KTNEFMain
()
override
;
void
loadFile
(
const
QString
&
filename
);
...
...
ktnef/src/messagepropertydialog.h
View file @
3ea72059
...
...
@@ -28,7 +28,7 @@ class MessagePropertyDialog : public QDialog
Q_OBJECT
public:
explicit
MessagePropertyDialog
(
QWidget
*
parent
,
KTNEFMessage
*
msg
);
~
MessagePropertyDialog
();
~
MessagePropertyDialog
()
override
;
private:
void
slotSaveProperty
();
...
...
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