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
Commits
1460ff39
Commit
1460ff39
authored
Dec 08, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
7d2b330e
Pipeline
#43335
skipped
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autotests/libs/inspectablechangerecorder.h
View file @
1460ff39
...
...
@@ -21,7 +21,7 @@ class InspectableChangeRecorderPrivate : public Akonadi::ChangeRecorderPrivate
{
public:
InspectableChangeRecorderPrivate
(
FakeMonitorDependenciesFactory
*
dependenciesFactory
,
InspectableChangeRecorder
*
parent
);
~
InspectableChangeRecorderPrivate
()
~
InspectableChangeRecorderPrivate
()
override
{
}
...
...
autotests/libs/inspectablemonitor.h
View file @
1460ff39
...
...
@@ -21,7 +21,7 @@ class InspectableMonitorPrivate : public Akonadi::MonitorPrivate
{
public:
InspectableMonitorPrivate
(
FakeMonitorDependenciesFactory
*
dependenciesFactory
,
InspectableMonitor
*
parent
);
~
InspectableMonitorPrivate
()
~
InspectableMonitorPrivate
()
override
{
}
...
...
autotests/libs/itemhydratest.cpp
View file @
1460ff39
...
...
@@ -32,7 +32,7 @@ struct Rudi: public Volker {
{
who
=
QStringLiteral
(
"Rudi"
);
}
virtual
~
Rudi
()
{
}
~
Rudi
()
override
{
}
Rudi
*
clone
()
const
override
{
return
new
Rudi
(
*
this
);
...
...
autotests/server/collectionstatisticstest.cpp
View file @
1460ff39
...
...
@@ -23,7 +23,7 @@ public:
:
CollectionStatistics
(
prefetch
)
,
mCalculationsCount
(
0
)
{}
~
IntrospectableCollectionStatistics
()
~
IntrospectableCollectionStatistics
()
override
{}
int
calculationsCount
()
const
...
...
src/core/attributes/tagattribute.h
View file @
1460ff39
...
...
@@ -28,7 +28,7 @@ class AKONADICORE_EXPORT TagAttribute : public Attribute
public:
explicit
TagAttribute
();
~
TagAttribute
();
~
TagAttribute
()
override
;
/**
* Sets the @p name that should be used for display.
...
...
src/core/jobs/specialcollectionshelperjobs_p.h
View file @
1460ff39
...
...
@@ -111,7 +111,7 @@ public:
/**
* Destroys the DefaultResourceJob.
*/
~
DefaultResourceJob
();
~
DefaultResourceJob
()
override
;
/**
* Sets the @p type of the resource that shall be created if the requested
...
...
@@ -184,7 +184,7 @@ public:
/**
Destroys the GetLockJob.
*/
~
GetLockJob
();
~
GetLockJob
()
override
;
/* reimpl */
void
start
()
override
;
...
...
src/qsqlite/src/qsql_sqlite.cpp
View file @
1460ff39
...
...
@@ -93,7 +93,7 @@ class QSQLiteResult : public QSqlCachedResult
friend
class
QSQLiteResultPrivate
;
public:
explicit
QSQLiteResult
(
const
QSQLiteDriver
*
db
);
~
QSQLiteResult
();
~
QSQLiteResult
()
override
;
QVariant
handle
()
const
override
;
protected:
...
...
src/qsqlite/src/qsql_sqlite.h
View file @
1460ff39
...
...
@@ -32,7 +32,7 @@ class QSQLiteDriver : public QSqlDriver
public:
explicit
QSQLiteDriver
(
QObject
*
parent
=
nullptr
);
explicit
QSQLiteDriver
(
sqlite3
*
connection
,
QObject
*
parent
=
nullptr
);
~
QSQLiteDriver
();
~
QSQLiteDriver
()
override
;
bool
hasFeature
(
DriverFeature
f
)
const
override
;
bool
open
(
const
QString
&
db
,
const
QString
&
user
,
...
...
src/server/exception.h
View file @
1460ff39
...
...
@@ -40,7 +40,7 @@ public:
Exception
(
const
Exception
&
)
=
delete
;
Exception
&
operator
=
(
const
Exception
&
)
=
delete
;
virtual
~
Exception
()
throw
()
=
default
;
~
Exception
()
throw
()
override
=
default
;
const
char
*
what
()
const
throw
()
override
{
return
mWhat
.
constData
();
...
...
src/server/notificationmanager.cpp
View file @
1460ff39
...
...
@@ -142,7 +142,7 @@ public:
{
}
~
NotifyRunnable
()
=
default
;
~
NotifyRunnable
()
override
=
default
;
void
run
()
override
{
for
(
const
auto
&
ntf
:
qAsConst
(
mNotifications
))
...
...
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