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
Akonadi Calendar
Commits
2291ea15
Commit
2291ea15
authored
Dec 08, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
d01421dc
Pipeline
#43334
skipped
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/blockalarmsattribute.h
View file @
2291ea15
...
...
@@ -35,7 +35,7 @@ public:
/**
* Destroys the block alarms attribute.
*/
~
BlockAlarmsAttribute
();
~
BlockAlarmsAttribute
()
override
;
/**
* Blocks or unblocks given alarm type.
...
...
src/calfilterproxymodel_p.h
View file @
2291ea15
...
...
@@ -20,7 +20,7 @@ class CalFilterProxyModel : public QSortFilterProxyModel
Q_OBJECT
public:
explicit
CalFilterProxyModel
(
QObject
*
parent
=
nullptr
);
~
CalFilterProxyModel
();
~
CalFilterProxyModel
()
override
;
KCalendarCore
::
CalFilter
*
filter
()
const
;
void
setFilter
(
KCalendarCore
::
CalFilter
*
filter
);
...
...
src/freebusydownloadjob_p.h
View file @
2291ea15
...
...
@@ -21,7 +21,7 @@ class FreeBusyDownloadJob : public KJob
Q_OBJECT
public:
explicit
FreeBusyDownloadJob
(
const
QUrl
&
url
,
QWidget
*
parentWidget
=
nullptr
);
~
FreeBusyDownloadJob
();
~
FreeBusyDownloadJob
()
override
;
void
start
()
override
;
...
...
src/freebusymanager.h
View file @
2291ea15
...
...
@@ -128,7 +128,7 @@ private:
Singleton
*/
FreeBusyManager
();
~
FreeBusyManager
();
~
FreeBusyManager
()
override
;
private:
friend
class
FreeBusyManagerStatic
;
...
...
src/incidencechanger_p.h
View file @
2291ea15
...
...
@@ -106,7 +106,7 @@ public:
{
}
~
ModificationChange
()
~
ModificationChange
()
override
{
if
(
!
parentChange
)
{
emitCompletionSignal
();
...
...
@@ -126,7 +126,7 @@ public:
{
}
~
CreationChange
()
~
CreationChange
()
override
{
//qCDebug(AKONADICALENDAR_LOG) << "CreationChange::~ will emit signal with " << resultCode;
if
(
!
parentChange
)
{
...
...
@@ -149,7 +149,7 @@ public:
{
}
~
DeletionChange
()
~
DeletionChange
()
override
{
//qCDebug(AKONADICALENDAR_LOG) << "DeletionChange::~ will emit signal with " << resultCode;
if
(
!
parentChange
)
{
...
...
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