diff options
author | saturneric <[email protected]> | 2025-01-26 18:40:43 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-01-26 18:40:43 +0000 |
commit | 731ec7339dc6f251a814d4aef59c05b1900ecf3f (patch) | |
tree | 3c0abf0dafb81578c97c0c9d169acbff99cb94d0 /src/core/GpgCoreInit.cpp | |
parent | fix: optimums unknown fpr verifying helper (diff) | |
download | GpgFrontend-731ec7339dc6f251a814d4aef59c05b1900ecf3f.tar.gz GpgFrontend-731ec7339dc6f251a814d4aef59c05b1900ecf3f.zip |
fix: improve code compatibility
Diffstat (limited to 'src/core/GpgCoreInit.cpp')
-rw-r--r-- | src/core/GpgCoreInit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/GpgCoreInit.cpp b/src/core/GpgCoreInit.cpp index 5c535319..86d68af4 100644 --- a/src/core/GpgCoreInit.cpp +++ b/src/core/GpgCoreInit.cpp @@ -54,7 +54,7 @@ auto VerifyGpgconfPath(const QFileInfo& gnupg_install_fs_path) -> bool { gnupg_install_fs_path.isFile(); } -auto SearchGpgconfPath(const QList<QString>& candidate_paths) -> QString { +auto SearchGpgconfPath(const QStringList& candidate_paths) -> QString { for (const auto& path : candidate_paths) { if (VerifyGpgconfPath(QFileInfo(path))) { // return a unify path |