diff options
author | saturneric <[email protected]> | 2024-02-29 14:36:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-02-29 14:36:25 +0000 |
commit | 84b04d88723ef05f7873082c235ecfd56facf934 (patch) | |
tree | 286ffac004c265169931102fbc1f68a13da110fa /src/core/utils/AsyncUtils.cpp | |
parent | feat: add module controller and continue to work on module system (diff) | |
download | GpgFrontend-84b04d88723ef05f7873082c235ecfd56facf934.tar.gz GpgFrontend-84b04d88723ef05f7873082c235ecfd56facf934.zip |
feat: add prefix GF to all sdk and module symbols
Diffstat (limited to 'src/core/utils/AsyncUtils.cpp')
-rw-r--r-- | src/core/utils/AsyncUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/utils/AsyncUtils.cpp b/src/core/utils/AsyncUtils.cpp index 9ce94247..3c007fb6 100644 --- a/src/core/utils/AsyncUtils.cpp +++ b/src/core/utils/AsyncUtils.cpp @@ -45,7 +45,7 @@ auto RunGpgOperaAsync(const GpgOperaRunnable& runnable, GF_CORE_LOG_DEBUG("got gnupg version from rt: {}, operation: {}", gnupg_version, operation); - if (CompareSoftwareVersion(gnupg_version, minial_version) < 0) { + if (GFCompareSoftwareVersion(gnupg_version, minial_version) < 0) { GF_CORE_LOG_ERROR("operaton {} not support for gnupg version: {}", operation, gnupg_version); callback(GPG_ERR_NOT_SUPPORTED, TransferParams()); @@ -85,7 +85,7 @@ auto RunGpgOperaSync(const GpgOperaRunnable& runnable, const QString& operation, GF_CORE_LOG_DEBUG("got gnupg version from rt: {}, operation: {}", gnupg_version, operation); - if (CompareSoftwareVersion(gnupg_version, minial_version) < 0) { + if (GFCompareSoftwareVersion(gnupg_version, minial_version) < 0) { GF_CORE_LOG_ERROR("operaton {} not support for gnupg version: {}", operation, gnupg_version); return {GPG_ERR_NOT_SUPPORTED, TransferParams()}; |