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 Search
Commits
c683141c
Commit
c683141c
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
bad6a478
Pipeline
#43322
passed with stage
in 19 minutes and 4 seconds
Changes
7
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
agent/agent.h
View file @
c683141c
...
...
@@ -23,7 +23,7 @@ class AkonadiIndexingAgent : public Akonadi::AgentBase, public Akonadi::AgentBas
public:
using
Akonadi
::
AgentBase
::
ObserverV3
::
collectionChanged
;
// So we don't trigger -Woverloaded-virtual
explicit
AkonadiIndexingAgent
(
const
QString
&
id
);
~
AkonadiIndexingAgent
();
~
AkonadiIndexingAgent
()
override
;
void
reindexAll
();
void
reindexCollection
(
const
qlonglong
id
);
...
...
agent/akonotesindexer.h
View file @
c683141c
...
...
@@ -25,7 +25,7 @@ public:
* should be stored
*/
explicit
AkonotesIndexer
(
const
QString
&
path
);
~
AkonotesIndexer
();
~
AkonotesIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
...
...
agent/calendarindexer.h
View file @
c683141c
...
...
@@ -26,7 +26,7 @@ public:
* should be stored
*/
explicit
CalendarIndexer
(
const
QString
&
path
);
~
CalendarIndexer
();
~
CalendarIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
...
...
agent/contactindexer.h
View file @
c683141c
...
...
@@ -15,7 +15,7 @@ class ContactIndexer : public AbstractIndexer
{
public:
explicit
ContactIndexer
(
const
QString
&
path
);
~
ContactIndexer
();
~
ContactIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
...
...
agent/emailindexer.h
View file @
c683141c
...
...
@@ -23,7 +23,7 @@ public:
* should be stored
*/
EmailIndexer
(
const
QString
&
path
,
const
QString
&
contactDbPath
);
~
EmailIndexer
();
~
EmailIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
...
...
lib/contactquery.h
View file @
c683141c
...
...
@@ -24,7 +24,7 @@ class AKONADI_SEARCH_PIM_EXPORT ContactQuery : public Query
{
public:
ContactQuery
();
~
ContactQuery
();
~
ContactQuery
()
override
;
void
matchName
(
const
QString
&
name
);
void
matchNickname
(
const
QString
&
nick
);
...
...
lib/notequery.h
View file @
c683141c
...
...
@@ -23,7 +23,7 @@ class AKONADI_SEARCH_PIM_EXPORT NoteQuery : public Query
{
public:
NoteQuery
();
~
NoteQuery
();
~
NoteQuery
()
override
;
void
matchTitle
(
const
QString
&
title
);
void
matchNote
(
const
QString
&
note
);
...
...
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