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
KDE PIM Add-ons
Commits
60301b38
Commit
60301b38
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
394a52da
Pipeline
#43293
skipped
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
korganizer/plugins/picoftheday/picoftheday.h
View file @
60301b38
...
...
@@ -47,7 +47,7 @@ class POTDElement : public StoredElement
public:
POTDElement
(
const
QString
&
id
,
QDate
date
,
QSize
initialThumbSize
);
~
POTDElement
()
~
POTDElement
()
override
{
}
...
...
plugins/messageviewerheaderplugins/briefheaderstyleplugin/briefheaderstrategy.h
View file @
60301b38
...
...
@@ -15,7 +15,7 @@ class BriefHeaderStrategy : public HeaderStrategy
{
public:
BriefHeaderStrategy
();
~
BriefHeaderStrategy
()
~
BriefHeaderStrategy
()
override
{
}
...
...
plugins/messageviewerheaderplugins/grantleeheaderstyleplugin/grantleeheaderstrategy.h
View file @
60301b38
...
...
@@ -14,7 +14,7 @@ class GrantleeHeaderStrategy : public HeaderStrategy
{
public:
GrantleeHeaderStrategy
();
~
GrantleeHeaderStrategy
();
~
GrantleeHeaderStrategy
()
override
;
public:
const
char
*
name
()
const
override
...
...
plugins/messageviewerheaderplugins/standardsheaderstyleplugin/standardheaderstrategy.h
View file @
60301b38
...
...
@@ -20,7 +20,7 @@ class StandardHeaderStrategy : public HeaderStrategy
{
public:
StandardHeaderStrategy
();
~
StandardHeaderStrategy
();
~
StandardHeaderStrategy
()
override
;
public:
const
char
*
name
()
const
override
...
...
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