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
KOrganizer
Commits
44a87386
Commit
44a87386
authored
Dec 08, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
f1aa3723
Pipeline
#43333
skipped
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
korgac/alarmdialog.h
View file @
44a87386
...
@@ -50,7 +50,7 @@ public:
...
@@ -50,7 +50,7 @@ public:
Q_ENUM
(
SuspendUnit
)
Q_ENUM
(
SuspendUnit
)
explicit
AlarmDialog
(
const
Akonadi
::
ETMCalendar
::
Ptr
&
calendar
,
QWidget
*
parent
=
nullptr
);
explicit
AlarmDialog
(
const
Akonadi
::
ETMCalendar
::
Ptr
&
calendar
,
QWidget
*
parent
=
nullptr
);
~
AlarmDialog
();
~
AlarmDialog
()
override
;
void
addIncidence
(
const
Akonadi
::
Item
&
incidence
,
const
QDateTime
&
reminderAt
,
const
QString
&
displayText
);
void
addIncidence
(
const
Akonadi
::
Item
&
incidence
,
const
QDateTime
&
reminderAt
,
const
QString
&
displayText
);
void
eventNotification
();
void
eventNotification
();
...
...
src/kodaymatrix.h
View file @
44a87386
...
@@ -64,7 +64,7 @@ public:
...
@@ -64,7 +64,7 @@ public:
/** destructor that deallocates all dynamically allocated private members.
/** destructor that deallocates all dynamically allocated private members.
*/
*/
~
KODayMatrix
();
~
KODayMatrix
()
override
;
/** returns the first and last date of the 6*7 matrix that displays @p month
/** returns the first and last date of the 6*7 matrix that displays @p month
* @param month The month we want to get matrix boundaries
* @param month The month we want to get matrix boundaries
...
...
src/views/collectionview/autotests/reparentingmodeltest.cpp
View file @
44a87386
...
@@ -23,7 +23,7 @@ public:
...
@@ -23,7 +23,7 @@ public:
{
{
}
}
virtual
~
DummyNode
()
~
DummyNode
()
override
{
{
}
}
...
...
Write
Preview
Markdown
is supported
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