Skip to content
GitLab
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
500ebea5
Commit
500ebea5
authored
Mar 11, 2022
by
Laurent Montel
Browse files
Add missing Q_REQUIRED_RESULT here too
parent
baaac56c
Pipeline
#148099
passed with stage
in 1 minute and 55 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
agent/agent.h
View file @
500ebea5
...
...
@@ -28,7 +28,7 @@ public:
void
reindexCollection
(
const
qlonglong
id
);
void
reindexCollections
(
const
QList
<
qlonglong
>
&
ids
);
qlonglong
indexedItems
(
const
qlonglong
id
);
int
numberOfCollectionQueued
();
Q_REQUIRED_RESULT
int
numberOfCollectionQueued
();
void
itemAdded
(
const
Akonadi
::
Item
&
item
,
const
Akonadi
::
Collection
&
collection
)
override
;
void
itemChanged
(
const
Akonadi
::
Item
&
item
,
const
QSet
<
QByteArray
>
&
partIdentifiers
)
override
;
...
...
agent/akonotesindexer.h
View file @
500ebea5
...
...
@@ -26,7 +26,7 @@ public:
explicit
AkonotesIndexer
(
const
QString
&
path
);
~
AkonotesIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
Q_REQUIRED_RESULT
QStringList
mimeTypes
()
const
override
;
void
index
(
const
Akonadi
::
Item
&
item
)
override
;
void
commit
()
override
;
...
...
agent/calendarindexer.h
View file @
500ebea5
...
...
@@ -27,7 +27,7 @@ public:
explicit
CalendarIndexer
(
const
QString
&
path
);
~
CalendarIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
Q_REQUIRED_RESULT
QStringList
mimeTypes
()
const
override
;
void
index
(
const
Akonadi
::
Item
&
item
)
override
;
void
commit
()
override
;
...
...
agent/contactindexer.h
View file @
500ebea5
...
...
@@ -16,7 +16,7 @@ public:
explicit
ContactIndexer
(
const
QString
&
path
);
~
ContactIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
Q_REQUIRED_RESULT
QStringList
mimeTypes
()
const
override
;
void
index
(
const
Akonadi
::
Item
&
item
)
override
;
void
remove
(
const
Akonadi
::
Item
&
item
)
override
;
...
...
agent/emailindexer.h
View file @
500ebea5
...
...
@@ -24,7 +24,7 @@ public:
EmailIndexer
(
const
QString
&
path
,
const
QString
&
contactDbPath
);
~
EmailIndexer
()
override
;
QStringList
mimeTypes
()
const
override
;
Q_REQUIRED_RESULT
QStringList
mimeTypes
()
const
override
;
void
index
(
const
Akonadi
::
Item
&
item
)
override
;
void
updateFlags
(
const
Akonadi
::
Item
&
item
,
const
QSet
<
QByteArray
>
&
added
,
const
QSet
<
QByteArray
>
&
removed
)
override
;
...
...
agent/scheduler.h
View file @
500ebea5
...
...
@@ -55,7 +55,7 @@ public:
*/
void
setBusyTimeout
(
int
);
int
numberOfCollectionQueued
()
const
;
Q_REQUIRED_RESULT
int
numberOfCollectionQueued
()
const
;
Q_SIGNALS:
void
status
(
int
status
,
const
QString
&
message
=
QString
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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