diff options
author | saturneric <[email protected]> | 2025-02-03 18:13:23 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-03 19:14:29 +0000 |
commit | 37d5b7e5546fde0433a2480eea5a2c3b222139ff (patch) | |
tree | 9c1f6f2d4b456dea2fb1af4aefcf4f1ac6ae97ee /src/core/model/GpgVerifyResult.cpp | |
parent | fix: set pb range when size of operas > 1 (diff) | |
download | GpgFrontend-37d5b7e5546fde0433a2480eea5a2c3b222139ff.tar.gz GpgFrontend-37d5b7e5546fde0433a2480eea5a2c3b222139ff.zip |
fix: qt5 compile issues
Diffstat (limited to 'src/core/model/GpgVerifyResult.cpp')
-rw-r--r-- | src/core/model/GpgVerifyResult.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/model/GpgVerifyResult.cpp b/src/core/model/GpgVerifyResult.cpp index cd232c02..ca5784d8 100644 --- a/src/core/model/GpgVerifyResult.cpp +++ b/src/core/model/GpgVerifyResult.cpp @@ -50,13 +50,13 @@ auto GpgVerifyResult::GetRaw() const -> gpgme_verify_result_t { } auto GpgVerifyResult::GetSignature() const -> QContainer<GpgSignature> { - QContainer<GpgSignature> sigatures; + QContainer<GpgSignature> signatures; auto* signature = result_ref_->signatures; while (signature != nullptr) { - sigatures.emplace_back(signature); + signatures.push_back(GpgSignature{signature}); signature = signature->next; } - return sigatures; + return signatures; } } // namespace GpgFrontend
\ No newline at end of file |