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
c78d6789
Commit
c78d6789
authored
Jan 10, 2021
by
Laurent Montel
😁
Browse files
Using QMutex in recursive mode is deprecated.
parent
652828df
Pipeline
#47202
passed with stage
in 19 minutes and 43 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
xapian/xapiansearchstore.cpp
View file @
c78d6789
...
...
@@ -19,7 +19,7 @@ using namespace Akonadi::Search;
XapianSearchStore
::
XapianSearchStore
(
QObject
*
parent
)
:
SearchStore
(
parent
)
,
m_mutex
(
QMutex
::
Recursive
)
,
m_mutex
()
,
m_nextId
(
1
)
{
}
...
...
xapian/xapiansearchstore.h
View file @
c78d6789
...
...
@@ -89,7 +89,7 @@ protected:
Xapian
::
Database
*
xapianDb
();
protected:
QMutex
m_mutex
;
Q
Recursive
Mutex
m_mutex
;
private:
Xapian
::
Query
toXapianQuery
(
const
Term
&
term
);
...
...
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