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
PIM Messagelib
Commits
2215d14d
Commit
2215d14d
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
1266e4e5
Pipeline
#43281
skipped
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/core/messageitem.h
View file @
2215d14d
...
...
@@ -205,7 +205,7 @@ class FakeItem : public MessageItem
public:
explicit
FakeItem
();
~
FakeItem
();
~
FakeItem
()
override
;
/// Reimplemented to return the fake tag list
QList
<
Tag
*
>
tagList
()
const
override
;
...
...
messagelist/src/core/theme.h
View file @
2215d14d
...
...
@@ -781,7 +781,7 @@ public:
/**
* Destroys this theme object.
*/
~
Theme
();
~
Theme
()
override
;
static
bool
compareName
(
Theme
*
theme1
,
Theme
*
theme2
)
{
...
...
messagelist/src/utils/themeeditor.h
View file @
2215d14d
...
...
@@ -57,7 +57,7 @@ class ThemePreviewDelegate : public Core::ThemeDelegate
Q_OBJECT
public:
explicit
ThemePreviewDelegate
(
QAbstractItemView
*
parent
);
~
ThemePreviewDelegate
();
~
ThemePreviewDelegate
()
override
;
private:
Core
::
GroupHeaderItem
*
mSampleGroupHeaderItem
=
nullptr
;
...
...
@@ -72,7 +72,7 @@ class ThemePreviewWidget : public QTreeWidget
Q_OBJECT
public:
explicit
ThemePreviewWidget
(
QWidget
*
parent
);
~
ThemePreviewWidget
();
~
ThemePreviewWidget
()
override
;
void
setReadOnly
(
bool
readOnly
);
private:
...
...
@@ -161,7 +161,7 @@ class ThemeContentItemSourceLabel : public QLabel
Q_OBJECT
public:
ThemeContentItemSourceLabel
(
QWidget
*
parent
,
Core
::
Theme
::
ContentItem
::
Type
type
);
~
ThemeContentItemSourceLabel
();
~
ThemeContentItemSourceLabel
()
override
;
public:
Core
::
Theme
::
ContentItem
::
Type
type
()
const
;
...
...
@@ -181,7 +181,7 @@ class ThemeEditor : public OptionSetEditor
Q_OBJECT
public:
explicit
ThemeEditor
(
QWidget
*
parent
);
~
ThemeEditor
();
~
ThemeEditor
()
override
;
public:
/**
...
...
messageviewer/src/dkim-verify/dkimresultattribute.h
View file @
2215d14d
...
...
@@ -15,7 +15,7 @@ class MESSAGEVIEWER_TESTS_EXPORT DKIMResultAttribute : public Akonadi::Attribute
{
public:
DKIMResultAttribute
();
~
DKIMResultAttribute
();
~
DKIMResultAttribute
()
override
;
Q_REQUIRED_RESULT
DKIMResultAttribute
*
clone
()
const
override
;
Q_REQUIRED_RESULT
QByteArray
type
()
const
override
;
Q_REQUIRED_RESULT
QByteArray
serialized
()
const
override
;
...
...
messageviewer/src/viewer/webengine/cidschemehandler/cidschemehandler.h
View file @
2215d14d
...
...
@@ -15,7 +15,7 @@ class CidSchemeHandler : public QWebEngineUrlSchemeHandler
Q_OBJECT
public:
explicit
CidSchemeHandler
(
QObject
*
parent
=
nullptr
);
~
CidSchemeHandler
();
~
CidSchemeHandler
()
override
;
void
requestStarted
(
QWebEngineUrlRequestJob
*
job
)
override
;
};
...
...
webengineviewer/src/tests/testwebengineviewinterceptor.cpp
View file @
2215d14d
...
...
@@ -39,7 +39,7 @@ class CidUrlRequestInterceptor : public QWebEngineUrlRequestInterceptor
public:
explicit
CidUrlRequestInterceptor
(
QObject
*
p
=
nullptr
);
void
interceptRequest
(
QWebEngineUrlRequestInfo
&
info
)
override
;
~
CidUrlRequestInterceptor
();
~
CidUrlRequestInterceptor
()
override
;
};
CidUrlRequestInterceptor
::
CidUrlRequestInterceptor
(
QObject
*
p
)
...
...
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