diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-20 22:22:01 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-20 22:22:11 +0200 |
commit | b28ae59530475bb47dca1c12c5c93dfc293a4a78 (patch) | |
tree | c45e0b13ab40095e56f9ca4107b4d19183e57c79 /options/bundle.hpp | |
parent | 471a4e360d262cf3de65cb107eab477d7765981d (diff) |
options: fix support for older Qt5
Reported by @DaWelter.
Diffstat (limited to 'options/bundle.hpp')
-rw-r--r-- | options/bundle.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/bundle.hpp b/options/bundle.hpp index 15965bc9..158fcef9 100644 --- a/options/bundle.hpp +++ b/options/bundle.hpp @@ -46,7 +46,7 @@ class OTR_OPTIONS_EXPORT bundle final : public QObject, public connector friend struct bundler; - mutable QRecursiveMutex mtx; + mutable QMutex mtx { QMutex::Recursive }; const QString group_name; group saved; group transient; @@ -62,7 +62,7 @@ public: bundle(const bundle&) = delete; bundle& operator=(const bundle&) = delete; - QRecursiveMutex* get_mtx() const override { return &mtx; } + QMutex* get_mtx() const override { return &mtx; } QString name() const { return group_name; } explicit bundle(const QString& group_name); |