Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #42448 from m-kuhn/qt6_recursive_mutex
[qt6] Use RecursiveMutex instead of QMutex( QMutex::Recursive )
- Loading branch information
Showing
with
207 additions
and 16 deletions.
- +1 −1 INSTALL.md
- +1 −2 python/core/auto_generated/auth/qgsauthmethod.sip.in
- +1 −0 src/core/CMakeLists.txt
- +5 −0 src/core/auth/qgsauthmanager.cpp
- +9 −1 src/core/auth/qgsauthmanager.h
- +23 −0 src/core/auth/qgsauthmethod.cpp
- +10 −5 src/core/auth/qgsauthmethod.h
- +5 −0 src/core/expression/qgsexpressionfunction.cpp
- +13 −0 src/core/providers/gdal/qgsgdalprovider.cpp
- +5 −0 src/core/providers/gdal/qgsgdalprovider.h
- +71 −2 src/core/providers/ogr/qgsogrprovider.cpp
- +32 −4 src/core/providers/ogr/qgsogrprovider.h
- +10 −1 src/core/qgsabstractcontentcache.h
- +7 −0 src/core/qgsapplication.cpp
- +4 −0 src/core/qgstaskmanager.cpp
- +4 −0 src/core/qgstaskmanager.h
- +2 −0 src/core/qgstiledownloadmanager.cpp
- +4 −0 src/core/qgstiledownloadmanager.h
@@ -0,0 +1,23 @@ | ||
/*************************************************************************** | ||
qgsauthmethod.cpp | ||
--------------------- | ||
begin : March 2021 | ||
copyright : (C) 2021 | ||
author : Matthias Khn | ||
email : matthias@opengis.ch | ||
*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
***************************************************************************/ | ||
|
||
#include "qgsauthmethod.h" | ||
|
||
QgsAuthMethod::QgsAuthMethod() | ||
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) | ||
: mMutex( QMutex::RecursionMode::Recursive ) | ||
#endif | ||
{} |
Oops, something went wrong.